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=bf3d3e2bb7ae2d3854be57f28dd1403c8f7e4c3c;hp=5cf940733bbf2d79477d566c00b3209c35c9fbf6;hpb=090be8653471e1abe3f1cdd32eaad0fbd65f85cd;p=elogind.git diff --git a/src/journal/test-journal-syslog.c b/src/journal/test-journal-syslog.c index 5cf940733..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 || streq(ident, ident2)); - assert(pid==pid2 || streq(pid, pid2)); + assert(ident == ident2 || streq_ptr(ident, ident2)); + assert(pid == pid2 || streq_ptr(pid, pid2)); } int main(void) {