[main] Flip debug buffer conditional check

It was inverted so we were never creating a debug buffer
when plymouth:debug was put on the kernel command line.
This commit is contained in:
Ray Strode 2009-09-18 16:08:27 -04:00
parent 21a9ba67a7
commit e031f59b98

View file

@ -1127,7 +1127,7 @@ check_verbosity (state_t *state)
debug_buffer_path = path;
}
if (debug_buffer != NULL)
if (debug_buffer == NULL)
debug_buffer = ply_buffer_new ();
#ifdef LOG_TO_DEBUG_FILE