destroy tokens even if there isn't v4 support

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12248 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-05-08 18:52:57 +00:00
parent 77299ee4c7
commit 0764844cac

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997 - 2000 Kungliga Tekniska H<>gskolan * Copyright (c) 1997 - 2000, 2003 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden). * (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved. * All rights reserved.
* *
@@ -120,11 +120,11 @@ main (int argc, char **argv)
#if KRB4 #if KRB4
if(dest_tkt_flag && dest_tkt ()) if(dest_tkt_flag && dest_tkt ())
exit_val = 1; exit_val = 1;
#endif
if (unlog_flag && k_hasafs ()) { if (unlog_flag && k_hasafs ()) {
if (k_unlog ()) if (k_unlog ())
exit_val = 1; exit_val = 1;
} }
#endif
return exit_val; return exit_val;
} }