Make ck_errf.pl ignore commented out error generation
[openssl.git] / crypto / srp / srp_vfy.c
index b13c006be87499cf21899680870a87386ee86f7e..17b35c00f9da8ccef487a925a11836a88adca9b1 100644 (file)
@@ -189,7 +189,7 @@ static SRP_user_pwd *SRP_user_pwd_new(void)
     SRP_user_pwd *ret;
     
     if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL) {
-        /* SRPerr(SRP_F_SRP_USER_PWD_NEW, ERR_R_MALLOC_FAILURE); */
+        /* SRPerr(SRP_F_SRP_USER_PWD_NEW, ERR_R_MALLOC_FAILURE); */ /*ckerr_ignore*/
         return NULL;
     }
     ret->N = NULL;