diff options
| author | Brian Somers <brian@FreeBSD.org> | 1997-05-13 20:34:01 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1997-05-13 20:34:01 +0000 |
| commit | 053df4906545c3b7f7775d1889803aba4302bf7a (patch) | |
| tree | 1316396d878548f8f65a25dd9a3ed27970919ff6 /usr.sbin/pppd | |
| parent | 5c28711af7dbe0071226059e68e775333a6391c3 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/pppd')
| -rw-r--r-- | usr.sbin/pppd/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pppd/auth.c b/usr.sbin/pppd/auth.c index 42e23f31124c..5e696a2ca854 100644 --- a/usr.sbin/pppd/auth.c +++ b/usr.sbin/pppd/auth.c @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: auth.c,v 1.14 1997/04/15 07:00:32 danny Exp $"; +static char rcsid[] = "$Id: auth.c,v 1.15 1997/04/16 02:07:06 danny Exp $"; #endif #include <stdio.h> @@ -1036,7 +1036,7 @@ scan_authfile(f, client, server, secret, addrs, filename) else if (addr_list != NULL) free_wordlist(addr_list); - non_wildclient = (best_flag & NONWILD_CLIENT) && *client != '\0'; + non_wildclient = (best_flag & NONWILD_CLIENT) && client && *client != '\0'; return best_flag; } |
