X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fjournal%2Ftest-journal-syslog.c;h=c4d407148c8d2a8e9496e09262fcb02ca2bf23d8;hb=0a1b6da82109c3b08b1f966a1625a77cc312135a;hp=3ae8633f22446abb0b789c7df6aa2db18c9eb290;hpb=e88baee88fad8bc59d33b55a7a2d640ef9e16cd6;p=elogind.git diff --git a/src/journal/test-journal-syslog.c b/src/journal/test-journal-syslog.c index 3ae8633f2..c4d407148 100644 --- a/src/journal/test-journal-syslog.c +++ b/src/journal/test-journal-syslog.c @@ -25,14 +25,14 @@ static void test_syslog_parse_identifier(const char* str, const char *ident, const char*pid, int ret) { const char *buf = str; - char *ident2 = NULL, *pid2 = NULL; + _cleanup_free_ char *ident2 = NULL, *pid2 = NULL; int ret2; ret2 = syslog_parse_identifier(&buf, &ident2, &pid2); assert(ret == ret2); - assert(ident==ident2 || !strcmp(ident, ident2)); - assert(pid==pid2 || !strcmp(pid, pid2)); + assert(ident == ident2 || streq_ptr(ident, ident2)); + assert(pid == pid2 || streq_ptr(pid, pid2)); } int main(void) {