- djm@cvs.openbsd.org 2006/07/10 11:24:54

[sftp-server.c]
     remove optind - it isn't used here
This commit is contained in:
Damien Miller 2006-07-10 21:31:00 +10:00
parent 211838d8e2
commit c718c743c1
2 changed files with 5 additions and 3 deletions

View File

@ -77,6 +77,9 @@
- stevesk@cvs.openbsd.org 2006/07/09 15:27:59 - stevesk@cvs.openbsd.org 2006/07/09 15:27:59
[ssh-add.c] [ssh-add.c]
use O_RDONLY vs. 0 in open(); no binary change use O_RDONLY vs. 0 in open(); no binary change
- djm@cvs.openbsd.org 2006/07/10 11:24:54
[sftp-server.c]
remove optind - it isn't used here
20060706 20060706
- (dtucker) [configure.ac] Try AIX blibpath test in different order when - (dtucker) [configure.ac] Try AIX blibpath test in different order when
@ -4810,4 +4813,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.4378 2006/07/10 11:14:00 djm Exp $ $Id: ChangeLog,v 1.4379 2006/07/10 11:31:00 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sftp-server.c,v 1.59 2006/07/09 15:15:11 stevesk Exp $ */ /* $OpenBSD: sftp-server.c,v 1.60 2006/07/10 11:24:54 djm Exp $ */
/* /*
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved. * Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
* *
@ -1201,7 +1201,6 @@ main(int argc, char **argv)
SyslogFacility log_facility = SYSLOG_FACILITY_AUTH; SyslogFacility log_facility = SYSLOG_FACILITY_AUTH;
char *cp; char *cp;
extern int optind;
extern char *optarg; extern char *optarg;
extern char *__progname; extern char *__progname;