From: mdw Date: Sun, 10 Apr 2005 17:53:27 +0000 (+0000) Subject: Fix bug in client error reporting. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/599e2cbfe3d7983cc43c1caadba120f315d516cc Fix bug in client error reporting. --- diff --git a/pixie.c b/pixie.c index 993b60f..95c6252 100644 --- a/pixie.c +++ b/pixie.c @@ -1055,7 +1055,7 @@ static void c_sline(char *s, size_t len, void *p) else { char *q = str_getword(&s); if (strcmp(q, "FAIL") == 0) - die(1, "%s", p); + die(1, "%s", s); else if (strcmp(q, "INFO") == 0 || strcmp(q, "ITEM") == 0) puts(s);