diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-28 23:54:07 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-28 23:54:07 +0000 |
commit | f6b962fba37a1ac105301d699708e541ce34d3b4 (patch) | |
tree | 74ae24de51a3b374e616459874e8cfab9bda99a0 /source3/client | |
parent | bd8e916cb520d89a14a1cd13b2b261253729ac9b (diff) | |
download | samba-f6b962fba37a1ac105301d699708e541ce34d3b4.tar.gz samba-f6b962fba37a1ac105301d699708e541ce34d3b4.tar.bz2 samba-f6b962fba37a1ac105301d699708e541ce34d3b4.zip |
fixed some krb5 ifdefs
(This used to be commit 23ef22f11700bbaa5778a9678a990a2b041fcefe)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index c3d1fbc7ec..c1b4ade011 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2686,7 +2686,7 @@ static int do_message_op(void) io_bufsize = MAX(1, atoi(optarg)); break; case 'k': -#if HAVE_KRB5 +#ifdef HAVE_KRB5 use_kerberos = True; got_pass = True; #else |