chiark / gitweb /
journald: allow priority of 999, too
authorLennart Poettering <lennart@poettering.net>
Mon, 11 Mar 2013 14:10:29 +0000 (15:10 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 11 Mar 2013 14:10:29 +0000 (15:10 +0100)
src/journal/journald-stream.c

index 54a5b3621a1f780298a6cb4cb4256754cbfb3132..bdc2f49ef4eae71ca461add529af82b1bde7892f 100644 (file)
@@ -175,7 +175,7 @@ static int stdout_stream_line(StdoutStream *s, char *p) {
 
         case STDOUT_STREAM_PRIORITY:
                 r = safe_atoi(p, &s->priority);
-                if (r < 0 || s->priority < 0 || s->priority >= 999) {
+                if (r < 0 || s->priority < 0 || s->priority > 999) {
                         log_warning("Failed to parse log priority line.");
                         return -EINVAL;
                 }