summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-06-20 22:09:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-06-20 22:09:54 +0000
commit9c10a34e60b7db227f57638de5f1a710e1a4cacf (patch)
treef8bc2bc4f5c1aec36ac6cb72dc1addc7f147efd4
parent65bc2b0e2b606979c7f546979e1f96d85c809e74 (diff)
worry about #ifdef KERBEROS
-rw-r--r--usr.bin/su/su.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/su/su.c b/usr.bin/su/su.c
index 973fd797ff3..da69d4c04a0 100644
--- a/usr.bin/su/su.c
+++ b/usr.bin/su/su.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: su.c,v 1.23 1997/06/20 21:59:17 deraadt Exp $ */
+/* $OpenBSD: su.c,v 1.24 1997/06/20 22:09:53 deraadt Exp $ */
/*
* Copyright (c) 1988 The Regents of the University of California.
@@ -41,7 +41,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)su.c 5.26 (Berkeley) 7/6/91";*/
-static char rcsid[] = "$OpenBSD: su.c,v 1.23 1997/06/20 21:59:17 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: su.c,v 1.24 1997/06/20 22:09:53 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -90,8 +90,11 @@ main(argc, argv)
uid_t ruid;
int asme, ch, asthem, fastlogin, prio;
enum { UNSET, YES, NO } iscsh = UNSET;
- char *user, *shell, *avshell, *username, *k, **np;
+ char *user, *shell, *avshell, *username, **np;
char shellbuf[MAXPATHLEN], avshellbuf[MAXPATHLEN];
+#ifdef KERBEROS
+ char *k;
+#endif
asme = asthem = fastlogin = 0;
while ((ch = getopt(argc, argv, ARGSTR)) != -1)