RT2848: Remove extra NULL check
[openssl.git] / ssl / kssl.c
index fd7c67bb1fcb6406b99ec87190c5beefda44eb53..4eaf294ca9a9d72b98d5f25d3e241f11572d986c 100644 (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 */
@@ -2148,7 +2148,7 @@ krb5_error_code  kssl_check_authent(
 
 
 /*  Replaces krb5_build_principal_ext(), with varargs length == 2 (svc, host),
-**  because I dont't know how to stub varargs.
+**  because I don't know how to stub varargs.
 **  Returns krb5_error_code == ENOMEM on alloc error, otherwise
 **  passes back newly constructed principal, which should be freed by caller.
 */