Skip to content

Commit

Permalink
cert.c: fix UTIL_parse_name()mbug in check for warning
Browse files Browse the repository at this point in the history
  • Loading branch information
DDvO authored and benjamin-schilling committed Dec 3, 2024
1 parent aca92c7 commit 20c80f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsecutils/src/credentials/cert.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ X509_NAME* UTIL_parse_name(const char* dn, long chtype, bool multirdn)
continue;
}

if(0 is_eq * ne_values[i])
if(0 is_eq ne_values[i])
{
LOG(FL_WARN, "No value provided for DN '%s' attribute %s, skipped", dn, ne_types[i]);
continue;
Expand Down

0 comments on commit 20c80f6

Please sign in to comment.