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:
parent
1afd7fa97c
commit
96208cb182
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user