Skip to content
Snippets Groups Projects
Commit 68728d18 authored by rswindell's avatar rswindell
Browse files

Fix missing line-end after log level.

parent c1c8057c
No related branches found
No related tags found
No related merge requests found
......@@ -1188,7 +1188,7 @@ int main(int argc, char **argv)
fprintf(stream,"LOG NONE\n");
else
fprintf(stream,"LOG %08lX\n",cfg.log); }
fprintf(stream,"LOG_LEVEL %u",cfg.log_level);
fprintf(stream,"LOG_LEVEL %u\n",cfg.log_level);
if(cfg.inbound[0])
fprintf(stream,"INBOUND %s\n",cfg.inbound);
if(cfg.secure[0])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment