Module Name:    src
Committed By:   christos
Date:           Sun Jan  9 23:17:36 UTC 2011

Modified Files:
        src/crypto/external/bsd/openssh/dist: servconf.c

Log Message:
avoid unused variable warning.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 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.6 src/crypto/external/bsd/openssh/dist/servconf.c:1.7
--- src/crypto/external/bsd/openssh/dist/servconf.c:1.6	Mon Nov 22 04:53:01 2010
+++ src/crypto/external/bsd/openssh/dist/servconf.c	Sun Jan  9 18:17:36 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: servconf.c,v 1.6 2010/11/22 09:53:01 adam Exp $	*/
+/*	$NetBSD: servconf.c,v 1.7 2011/01/09 23:17:36 christos Exp $	*/
 /* $OpenBSD: servconf.c,v 1.209 2010/06/22 04:22:59 djm Exp $ */
 /*
  * Copyright (c) 1995 Tatu Ylonen <y...@cs.hut.fi>, Espoo, Finland
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-__RCSID("$NetBSD: servconf.c,v 1.6 2010/11/22 09:53:01 adam Exp $");
+__RCSID("$NetBSD: servconf.c,v 1.7 2011/01/09 23:17:36 christos Exp $");
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/queue.h>
@@ -816,7 +816,9 @@
 	int cmdline = 0, *intptr, value, n;
 	SyslogFacility *log_facility_ptr;
 	LogLevel *log_level_ptr;
+#ifdef WITH_LDAP_PUBKEY
  	unsigned long lvalue;
+#endif
 	time_t *timetptr;
 	ServerOpCodes opcode;
 	int port = 0;

Reply via email to