diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1998-08-12 23:58:51 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1998-08-12 23:58:51 +0000 |
commit | 35028371618bb138af7975f0c640f5e7943fcbaf (patch) | |
tree | 065b7fe93572d751432300edac3985502130e21e /kerberosIV | |
parent | 36f98f8347f986ee192477e3c971047962571fb1 (diff) |
explicit braces to avoid ambigious else
Diffstat (limited to 'kerberosIV')
-rw-r--r-- | kerberosIV/kauth/kauth.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/kerberosIV/kauth/kauth.c b/kerberosIV/kauth/kauth.c index dd12d0fc943..3a64d220b4d 100644 --- a/kerberosIV/kauth/kauth.c +++ b/kerberosIV/kauth/kauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kauth.c,v 1.2 1998/08/12 23:55:57 art Exp $ */ +/* $OpenBSD: kauth.c,v 1.3 1998/08/12 23:58:50 art Exp $ */ /* $KTH: kauth.c,v 1.81 1997/12/09 10:36:33 joda Exp $ */ /* @@ -234,7 +234,7 @@ main(int argc, char **argv) errx (1, "Could not get default principal"); /* With root tickets assume remote user is root */ - if (*remoteuser == '\0') + if (*remoteuser == '\0') { if (strcmp(princ.instance, "root") == 0) { strncpy(remoteuser, princ.instance, sizeof(remoteuser) - 1); remoteuser[sizeof(remoteuser) - 1] = '\0'; @@ -243,6 +243,7 @@ main(int argc, char **argv) strncpy(remoteuser, princ.name, sizeof(remoteuser) - 1); remoteuser[sizeof(remoteuser) - 1] = '\0'; } + } more_args = argc - optind; @@ -303,11 +304,12 @@ main(int argc, char **argv) if (k_hasafs()) { if (more_args) k_setpag(); - if ((code = krb_afslog(cell, NULL)) != 0 && code != KDC_PR_UNKNOWN) + if ((code = krb_afslog(cell, NULL)) != 0 && code != KDC_PR_UNKNOWN) { if(code > 0) - warnx ("%s", krb_get_err_text(code)); + warnx ("%s", krb_get_err_text(code)); else warnx ("failed to store AFS token"); + } } for(ret = 0; nhost-- > 0; host++) |