summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMartin Olsson <martin@minimum.se>2014-08-19 11:46:52 -0400
committerRich Salz <rsalz@akamai.com>2014-08-19 12:43:58 -0400
commit96208cb1821f92dd6e94c3aa2882bc9cc47904f9 (patch)
tree7df20e6be2e5f9350941cf8e5ef144ac6276f9f0 /ssl
parent1afd7fa97c5445b18ce8afe6f81b932b2c217a5f (diff)
RT2848: Remove extra NULL check
Don't need to check auth for NULL since we did when we assigned to it. Reviewed-by: Emilia Kasper <emilia@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/kssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/kssl.c b/ssl/kssl.c
index e56dc6b8b7..4eaf294ca9 100644
--- a/ssl/kssl.c
+++ b/ssl/kssl.c
@@ -2133,7 +2133,7 @@ krb5_error_code kssl_check_authent(
#ifdef KSSL_DEBUG
printf("kssl_check_authent: returns %d for client time ", *atimep);
- if (auth && auth->ctime && auth->ctime->length && auth->ctime->data)
+ if (auth->ctime && auth->ctime->length && auth->ctime->data)
printf("%.*s\n", auth->ctime->length, auth->ctime->data);
else printf("NULL\n");
#endif /* KSSL_DEBUG */