diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1998-09-12 14:06:53 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1998-09-12 14:06:53 +0000 |
commit | 543d26033ec3092b13c9e175299e7f6ca0d7649f (patch) | |
tree | 4447c01ca75bfa0572e7c5220962ddba1ea11db7 /usr.sbin | |
parent | e1baf0ae9985af90d247c9001b9a15d3d398b161 (diff) |
Insert missing flags -s and -S, probably lost during move from 'mini getopt'
to the real getopt.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pppd/chat/chat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pppd/chat/chat.c b/usr.sbin/pppd/chat/chat.c index 4d59b7808aa..675f544d7c2 100644 --- a/usr.sbin/pppd/chat/chat.c +++ b/usr.sbin/pppd/chat/chat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chat.c,v 1.8 1998/08/04 17:50:58 millert Exp $ */ +/* $OpenBSD: chat.c,v 1.9 1998/09/12 14:06:52 provos Exp $ */ /* * Chat -- a program for automatic session establishment (i.e. dial @@ -83,7 +83,7 @@ #if 0 static char rcsid[] = "Id: chat.c,v 1.19 1998/03/24 23:57:48 paulus Exp $"; #else -static char rcsid[] = "$OpenBSD: chat.c,v 1.8 1998/08/04 17:50:58 millert Exp $"; +static char rcsid[] = "$OpenBSD: chat.c,v 1.9 1998/09/12 14:06:52 provos Exp $"; #endif #endif @@ -260,7 +260,7 @@ main(argc, argv) tzset(); - while ((option = getopt(argc, argv, "evVt:r:f:T:U:")) != -1) { + while ((option = getopt(argc, argv, "esSvVt:r:f:T:U:")) != -1) { switch (option) { case 'e': ++echo; |