diff options
author | ache <ache@FreeBSD.org> | 1995-09-15 22:18:45 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-09-15 22:18:45 +0000 |
commit | c8876de397482c5b7756424723c25576a7a14e8d (patch) | |
tree | 3e97fd6c360e75d9b675486e46e7b197ec268c69 /sbin | |
parent | 00ca76f2e5f379e064149dc6f23ed8863c8650ee (diff) | |
download | FreeBSD-src-c8876de397482c5b7756424723c25576a7a14e8d.zip FreeBSD-src-c8876de397482c5b7756424723c25576a7a14e8d.tar.gz |
Oops. Fix my error with -W option
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/startslip/startslip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/startslip/startslip.c b/sbin/startslip/startslip.c index 4d3ac7b..b737aa1 100644 --- a/sbin/startslip/startslip.c +++ b/sbin/startslip/startslip.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: startslip.c,v 1.10 1995/09/15 20:06:50 ache Exp $ + * $Id: startslip.c,v 1.11 1995/09/15 20:34:55 ache Exp $ */ #ifndef lint @@ -120,7 +120,7 @@ main(argc, argv) pid_t pid; struct termios t; - while ((ch = getopt(argc, argv, "dhlWb:s:t:w:A:U:D:")) != EOF) + while ((ch = getopt(argc, argv, "dhlb:s:t:w:A:U:D:W:")) != EOF) switch (ch) { case 'd': debug = 1; |