diff options
author | 2006-07-10 11:24:54 +0000 | |
---|---|---|
committer | 2006-07-10 11:24:54 +0000 | |
commit | 2bc8f8d3b85930090e89306ac0d86077417724ca (patch) | |
tree | bc6ac5c7c79185afca402d6d79dda2c9cdb6f8a3 | |
parent | remove ifdef __OtherBSD__. no binary change (diff) | |
download | wireguard-openbsd-2bc8f8d3b85930090e89306ac0d86077417724ca.tar.xz wireguard-openbsd-2bc8f8d3b85930090e89306ac0d86077417724ca.zip |
remove optind - it isn't used here
-rw-r--r-- | usr.bin/ssh/sftp-server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-server.c b/usr.bin/ssh/sftp-server.c index f04a2961fb8..57b59a519cb 100644 --- a/usr.bin/ssh/sftp-server.c +++ b/usr.bin/ssh/sftp-server.c @@ -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. * @@ -1184,7 +1184,6 @@ main(int argc, char **argv) SyslogFacility log_facility = SYSLOG_FACILITY_AUTH; char *cp; - extern int optind; extern char *optarg; extern char *__progname; |