Module Name: src
Committed By: martin
Date: Tue Jan 28 22:06:39 UTC 2014
Modified Files:
src/crypto/external/bsd/openssh/dist: servconf.c
Log Message:
Mark a potentially unused variable (depending on #ifdef)
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/crypto/external/bsd/openssh/dist/servconf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/openssh/dist/servconf.c
diff -u src/crypto/external/bsd/openssh/dist/servconf.c:1.14 src/crypto/external/bsd/openssh/dist/servconf.c:1.15
--- src/crypto/external/bsd/openssh/dist/servconf.c:1.14 Sun Dec 15 10:42:52 2013
+++ src/crypto/external/bsd/openssh/dist/servconf.c Tue Jan 28 22:06:39 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: servconf.c,v 1.14 2013/12/15 10:42:52 spz Exp $ */
+/* $NetBSD: servconf.c,v 1.15 2014/01/28 22:06:39 martin Exp $ */
/* $OpenBSD: servconf.c,v 1.240 2013/07/19 07:37:48 markus Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-__RCSID("$NetBSD: servconf.c,v 1.14 2013/12/15 10:42:52 spz Exp $");
+__RCSID("$NetBSD: servconf.c,v 1.15 2014/01/28 22:06:39 martin Exp $");
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/queue.h>
@@ -959,7 +959,7 @@ process_server_config_line(ServerOptions
#ifdef WITH_LDAP_PUBKEY
unsigned long lvalue;
#endif
- time_t *timetptr;
+ time_t *timetptr __unused;
ServerOpCodes opcode;
u_int i, flags = 0;
size_t len;