kpasswd.c (main): Warnings cleanup
authorEzra Peisach <epeisach@mit.edu>
Sat, 29 Jul 2000 19:17:30 +0000 (19:17 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sat, 29 Jul 2000 19:17:30 +0000 (19:17 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12593 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kpasswd/ChangeLog
src/clients/kpasswd/kpasswd.c

index cc48688c13680a65bbe74a2f73e2bf9a45377c88..6ef626a57828753ca0b2ccec30755823dc9260ea 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-29  Ezra Peisach  <epeisach@mit.edu>
+
+       * kpasswd.c (main): Warnings cleanup.
+
 2000-03-16  Ezra Peisach  <epeisach@mit.edu>
 
        * kpasswd.c (main): Remove unused variables.
index 94c8d510019ec384ba26da0a0e0313f9d0ce0693..82568500f8870fb3ffe55fe5487fe9e9051b3675 100644 (file)
@@ -13,6 +13,7 @@
 #ifdef HAVE_PWD_H
 #include <pwd.h>
 
+static
 void get_name_from_passwd_file(program_name, kcontext, me)
     char * program_name;
     krb5_context kcontext;
@@ -20,7 +21,7 @@ void get_name_from_passwd_file(program_name, kcontext, me)
 {
     struct passwd *pw;
     krb5_error_code code;
-    if (pw = getpwuid((int) getuid())) {
+    if ((pw = getpwuid((int) getuid()))) {
        if ((code = krb5_parse_name(kcontext, pw->pw_name, me))) {
            com_err (program_name, code, "when parsing name %s", pw->pw_name);
            exit(1);
@@ -62,15 +63,12 @@ int main(int argc, char *argv[])
 
    pname = argv[1];
 
-   if (ret = krb5_init_context(&context)) {
+   ret = krb5_init_context(&context);
+   if (ret) {
       com_err(argv[0], ret, "initializing kerberos library");
       exit(1);
    }
 
-#if 0
-   krb5_init_ets(context);
-#endif
-
    /* in order, use the first of:
       - a name specified on the command line
       - the principal name from an existing ccache
@@ -80,7 +78,7 @@ int main(int argc, char *argv[])
       */
 
    if (pname) {
-      if (ret = krb5_parse_name(context, pname, &princ)) {
+      if ((ret = krb5_parse_name(context, pname, &princ))) {
         com_err(argv[0], ret, "parsing client name");
         exit(1);
       }
@@ -90,12 +88,12 @@ int main(int argc, char *argv[])
         exit(1);
       }
 
-      if (ret = krb5_cc_get_principal(context, ccache, &princ)) {
+      if ((ret = krb5_cc_get_principal(context, ccache, &princ))) {
         com_err(argv[0], ret, "getting principal from ccache");
         exit(1);
       }
 
-      if (ret = krb5_cc_close(context, ccache)) {
+      if ((ret = krb5_cc_close(context, ccache))) {
         com_err(argv[0], ret, "closing ccache");
         exit(1);
       }
@@ -109,9 +107,9 @@ int main(int argc, char *argv[])
    krb5_get_init_creds_opt_set_forwardable(&opts, 0);
    krb5_get_init_creds_opt_set_proxiable(&opts, 0);
 
-   if (ret = krb5_get_init_creds_password(context, &creds, princ, NULL,
-                                         krb5_prompter_posix, NULL, 
-                                         0, "kadmin/changepw", &opts)) {
+   if ((ret = krb5_get_init_creds_password(context, &creds, princ, NULL,
+                                          krb5_prompter_posix, NULL, 
+                                          0, "kadmin/changepw", &opts))) {
       if (ret == KRB5KRB_AP_ERR_BAD_INTEGRITY)
         com_err(argv[0], 0,
                 "Password incorrect while getting initial ticket");
@@ -121,14 +119,14 @@ int main(int argc, char *argv[])
    }
 
    pwlen = sizeof(pw);
-   if (ret = krb5_read_password(context, P1, P2, pw, &pwlen)) {
+   if ((ret = krb5_read_password(context, P1, P2, pw, &pwlen))) {
       com_err(argv[0], ret, "while reading password");
       exit(1);
    }
 
-   if (ret = krb5_change_password(context, &creds, pw,
-                                 &result_code, &result_code_string,
-                                 &result_string)) {
+   if ((ret = krb5_change_password(context, &creds, pw,
+                                  &result_code, &result_code_string,
+                                  &result_string))) {
       com_err(argv[0], ret, "changing password");
       exit(1);
    }