From 27af2f973dd7ef7de3a9e15c3c28796d5f31aa6a Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 19 Apr 1999 14:48:28 +0000 Subject: [PATCH] (--tokens): conditionalize on KRB4 git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6004 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kuser/klist.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kuser/klist.c b/kuser/klist.c index 7dd2e4db2..1ae868c3b 100644 --- a/kuser/klist.c +++ b/kuser/klist.c @@ -336,13 +336,17 @@ static int version_flag = 0; static int help_flag = 0; static int do_verbose = 0; static int do_test = 0; +#ifdef KRB4 static int do_tokens = 0; +#endif static struct getargs args[] = { { "test", 't', arg_flag, &do_test, "test for having tickets", NULL }, +#ifdef KRB4 { "tokens", 'T', arg_flag, &do_tokens, "display AFS tokens", NULL }, +#endif { "verbose", 'v', arg_flag, &do_verbose, "Verbose output", NULL }, { "version", 0, arg_flag, &version_flag,