Skip to content

Commit

Permalink
Fix warning in lib/krb5/test_acl.c
Browse files Browse the repository at this point in the history
  • Loading branch information
nicowilliams authored and jaltman committed Jan 2, 2019
1 parent 752c3a6 commit 7d5f955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/krb5/test_acl.c
Expand Up @@ -37,7 +37,7 @@
do { if (r != e) krb5_errx(c, 1, "%s", s); } while (0)
#define STRINGMATCH(c, s, _s1, _s2) \
do { \
if (_s1 == NULL || _s2 == NULL) \
if (_s1 == NULL) \
krb5_errx(c, 1, "s1 or s2 is NULL"); \
if (strcmp(_s1,_s2) != 0) \
krb5_errx(c, 1, "%s", s); \
Expand Down

0 comments on commit 7d5f955

Please sign in to comment.