diff options
author | Karel Zak | 2017-11-06 14:47:29 +0100 |
---|---|---|
committer | Karel Zak | 2017-11-06 14:47:29 +0100 |
commit | e7f9744ef551d1ce22b7710f6a8db38b73ab3f47 (patch) | |
tree | 81441c8b7e56d32a384af1f376ad60a408912324 /term-utils | |
parent | libmount: check waitpid() return code (diff) | |
download | kernel-qcow2-util-linux-e7f9744ef551d1ce22b7710f6a8db38b73ab3f47.tar.gz kernel-qcow2-util-linux-e7f9744ef551d1ce22b7710f6a8db38b73ab3f47.tar.xz kernel-qcow2-util-linux-e7f9744ef551d1ce22b7710f6a8db38b73ab3f47.zip |
agetty: remove unused flag
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'term-utils')
-rw-r--r-- | term-utils/agetty.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/term-utils/agetty.c b/term-utils/agetty.c index ee66a3948..4fc5abc24 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -193,7 +193,7 @@ enum { #define F_INITSTRING (1<<4) /* initstring is set */ #define F_WAITCRLF (1<<5) /* wait for CR or LF */ -#define F_CUSTISSUE (1<<6) /* give alternative issue file */ + #define F_NOPROMPT (1<<7) /* do not ask for login name! */ #define F_LCUC (1<<8) /* support for *LCUC stty modes */ #define F_KEEPSPEED (1<<9) /* follow baud rate from kernel */ @@ -741,7 +741,6 @@ static void parse_args(int argc, char **argv, struct options *op) op->flags |= F_REMOTE; break; case 'f': - op->flags |= F_CUSTISSUE; op->issue = optarg; break; case 'h': |