Commit 96208cb1 authored by Martin Olsson's avatar Martin Olsson Committed by Rich Salz
Browse files

RT2848: Remove extra NULL check



Don't need to check auth for NULL since we did when we
assigned to it.

Reviewed-by: default avatarEmilia Kasper <emilia@openssl.org>
parent 1afd7fa9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */