* kdestroy.c (main): Clean up compiler warnings
authorEzra Peisach <epeisach@mit.edu>
Wed, 2 Aug 2000 14:50:33 +0000 (14:50 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 2 Aug 2000 14:50:33 +0000 (14:50 +0000)
There are still some warnings, but this handles the bulk of them.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12597 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kdestroy/ChangeLog
src/clients/kdestroy/kdestroy.c

index b16a72c7656bece856117f62f97b088c5460dde3..bf4c61b6de724b568341cd1db735aca9cce99a15 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-02  Ezra Peisach  <epeisach@mit.edu>
+
+       * kdestroy.c (main): Clean up compiler warnings.
+
 2000-03-16  Ezra Peisach  <epeisach@mit.edu>
 
        * kdestroy.c: Do not define variables if v4 compatilibilty is not
index d322555cc984f9d63c5b2a65733dc2f0536d7bb2..940688b501e187b84376d1d88abbcf5a0aa2d846 100644 (file)
@@ -64,7 +64,7 @@ int default_k4 = 0;
 #endif
 
 
-void usage()
+static void usage()
 {
 #define KRB_AVAIL_STRING(x) ((x)?"available":"not available")
 
@@ -184,7 +184,8 @@ main(argc, argv)
                exit(1);
            }
        } else {
-           if (code = krb5_cc_default(kcontext, &cache)) {
+           code = krb5_cc_default(kcontext, &cache);
+           if (code) {
                com_err(progname, code, "while getting default ccache");
                exit(1);
            }