- dtucker@cvs.openbsd.org 2006/03/19 11:51:52
[servconf.c] Correct strdelim null test; ok djm@
This commit is contained in:
parent
5790b5910b
commit
78f16cb07b
|
@ -34,6 +34,9 @@
|
||||||
[sshconnect2.c]
|
[sshconnect2.c]
|
||||||
memory leaks detected by Coverity via elad AT netbsd.org;
|
memory leaks detected by Coverity via elad AT netbsd.org;
|
||||||
deraadt@ ok
|
deraadt@ ok
|
||||||
|
- dtucker@cvs.openbsd.org 2006/03/19 11:51:52
|
||||||
|
[servconf.c]
|
||||||
|
Correct strdelim null test; ok djm@
|
||||||
|
|
||||||
20060325
|
20060325
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -4291,4 +4294,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4250 2006/03/26 02:54:12 djm Exp $
|
$Id: ChangeLog,v 1.4251 2006/03/26 02:54:37 djm Exp $
|
||||||
|
|
|
@ -447,7 +447,7 @@ process_server_config_line(ServerOptions *options, char *line,
|
||||||
u_int i;
|
u_int i;
|
||||||
|
|
||||||
cp = line;
|
cp = line;
|
||||||
if ((arg = strdelim(&cp)) != NULL)
|
if ((arg = strdelim(&cp)) == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
/* Ignore leading whitespace */
|
/* Ignore leading whitespace */
|
||||||
if (*arg == '\0')
|
if (*arg == '\0')
|
||||||
|
|
Loading…
Reference in New Issue