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>
This commit is contained in:
Martin Olsson 2014-08-19 11:46:52 -04:00 committed by Rich Salz
parent 1afd7fa97c
commit 96208cb182

View File

@ -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 */