diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-11-07 09:21:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-11-07 09:21:35 +0000 |
commit | cbd1a77ec24e397d05f20c6de106625676343c9d (patch) | |
tree | b92440210b287a25e34293646d26fe124581c767 /lib/krb4.c | |
parent | 33f7ac06c3aaecf995360323d6f425e769e6fa79 (diff) | |
download | curl-cbd1a77ec24e397d05f20c6de106625676343c9d.tar.gz |
if () => if()
while () => while()
and some other minor re-indentings
Diffstat (limited to 'lib/krb4.c')
-rw-r--r-- | lib/krb4.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/krb4.c b/lib/krb4.c index f2b91df69..3a8f01ae8 100644 --- a/lib/krb4.c +++ b/lib/krb4.c @@ -97,7 +97,7 @@ strlcpy (char *dst, const char *src, size_t dst_sz) ++p, ++src, ++n) *p = *src; *p = '\0'; - if (*src == '\0') + if(*src == '\0') return n; else return n + strlen (src); @@ -228,17 +228,17 @@ krb4_auth(void *app_data, struct connectdata *conn) } #ifdef HAVE_KRB_GET_OUR_IP_FOR_REALM - if (krb_get_config_bool("nat_in_use")) { + if(krb_get_config_bool("nat_in_use")) { struct sockaddr_in *localaddr = (struct sockaddr_in *)LOCAL_ADDR; struct in_addr natAddr; - if (krb_get_our_ip_for_realm(krb_realmofhost(host), + if(krb_get_our_ip_for_realm(krb_realmofhost(host), &natAddr) != KSUCCESS && krb_get_our_ip_for_realm(NULL, &natAddr) != KSUCCESS) infof(data, "Can't get address for realm %s\n", krb_realmofhost(host)); else { - if (natAddr.s_addr != localaddr->sin_addr.s_addr) { + if(natAddr.s_addr != localaddr->sin_addr.s_addr) { #ifdef HAVE_INET_NTOA_R char ntoa_buf[64]; char *ip = (char *)inet_ntoa_r(natAddr, ntoa_buf, sizeof(ntoa_buf)); @@ -387,7 +387,7 @@ CURLcode Curl_krb_kauth(struct connectdata *conn) des_pcbc_encrypt((void *)tkt.dat, (void *)tktcopy.dat, tkt.length, schedule, &key, DES_DECRYPT); - if (strcmp ((char*)tktcopy.dat + 8, + if(strcmp ((char*)tktcopy.dat + 8, KRB_TICKET_GRANTING_TICKET) != 0) { afs_string_to_key(passwd, krb_realmofhost(conn->host.name), |