suppress lines made up only of whitespace
authorLennart Poettering <lennart@poettering.net>
Fri, 30 Jan 2009 01:25:22 +0000 (02:25 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 30 Jan 2009 01:25:22 +0000 (02:25 +0100)
src/pulsecore/log.c

index 9a7f7ca..1ae4383 100644 (file)
@@ -278,7 +278,8 @@ void pa_log_levelv_meta(
             n++;
         }
 
-        if (!*t)
+        /* We ignore strings only made out of whitespace */
+        if (t[strspn(t, "\t ")] == 0)
             continue;
 
         switch (log_target) {