X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fsys-ultrix.c;fp=pppd%2Fsys-ultrix.c;h=691b38695e8dcee8a52ba9ccce153cbf911cf527;hp=d956be4ba4339d542fdefe69606a5e41f2151fa6;hb=bfa20ccde2a70b1252dbb614132f1a4cbee815d4;hpb=66787f54548cc1e3b7934026ddaa956253073e39 diff --git a/pppd/sys-ultrix.c b/pppd/sys-ultrix.c index d956be4..691b386 100644 --- a/pppd/sys-ultrix.c +++ b/pppd/sys-ultrix.c @@ -21,7 +21,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: sys-ultrix.c,v 1.22 1998/03/25 03:09:12 paulus Exp $"; +static char rcsid[] = "$Id: sys-ultrix.c,v 1.23 1998/11/07 06:59:32 paulus Exp $"; #endif /* @@ -137,13 +137,14 @@ sys_close() /* * sys_check_options - check the options that the user specified */ -void +int sys_check_options() { if (demand) { option_error("Sorry - demand-dialling is not supported under Ultrix\n"); - exit(1); + return 0; } + return 1; }