- djm@cvs.openbsd.org 2009/08/31 20:56:02

[sftp-server.c]
     check correct variable for error message, spotted by martynas@
This commit is contained in:
Darren Tucker 2009-10-07 08:47:24 +11:00
parent 893d73549d
commit 30359e19ec
2 changed files with 5 additions and 2 deletions

View File

@ -67,6 +67,9 @@
migration measure back in 2002 when constraints were new, but just
adds risk now.
bz #1612, report and patch from dkg AT fifthhorseman.net; ok markus@
- djm@cvs.openbsd.org 2009/08/31 20:56:02
[sftp-server.c]
check correct variable for error message, spotted by martynas@
20091002
- (djm) [Makefile.in] Mention readconf.o in ssh-keysign's make deps.

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sftp-server.c,v 1.86 2009/08/27 17:28:52 djm Exp $ */
/* $OpenBSD: sftp-server.c,v 1.87 2009/08/31 20:56:02 djm Exp $ */
/*
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
*
@ -1368,7 +1368,7 @@ sftp_server_main(int argc, char **argv, struct passwd *user_pw)
break;
case 'u':
mask = (mode_t)strtonum(optarg, 0, 0777, &errmsg);
if (cp != NULL)
if (errmsg != NULL)
fatal("Invalid umask \"%s\": %s",
optarg, errmsg);
(void)umask(mask);