diff options
author | brian <brian@cvs.openbsd.org> | 2000-04-09 18:27:26 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 2000-04-09 18:27:26 +0000 |
commit | 9e11ee26538ad57dbcd4af6608bac6a2dac123ab (patch) | |
tree | e53fc284a1793a9f8d076b5f9ae7555236047a62 | |
parent | 4dab01eda7a3d5eb1835ee40505b55cde7bdb3c0 (diff) |
Add a missing ``break''
-rw-r--r-- | usr.sbin/ppp/ppp/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ppp/main.c b/usr.sbin/ppp/ppp/main.c index b990f1d83fb..fa0eccb9b10 100644 --- a/usr.sbin/ppp/ppp/main.c +++ b/usr.sbin/ppp/ppp/main.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $OpenBSD: main.c,v 1.20 2000/04/07 23:46:39 brian Exp $ + * $OpenBSD: main.c,v 1.21 2000/04/09 18:27:25 brian Exp $ * * TODO: */ @@ -437,6 +437,7 @@ main(int argc, char **argv) case EX_NORMAL: prompt_Printf(prompt, "PPP enabled\n"); log_Printf(LogPHASE, "Parent: PPP enabled\n"); + break; case EX_REDIAL: if (!sw.quiet) prompt_Printf(prompt, "Attempting redial\n"); |