Skip to content

Commit

Permalink
Added some 'todo ?' items.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanem committed Sep 30, 2020
1 parent a0d9168 commit 28ef244
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1192,8 +1192,8 @@ int trace_printf (const char *fmt, ...)

#if 0 /* todo ? */
l2 = vsnprintf (trace_ptr, trace_end - trace_ptr - 1, fmt, args);
trace_ptr += l2;
l1 = trace_puts (trace_ptr);
trace_ptr += l2;
#else
l2 = vsnprintf (buf, sizeof(buf)-1, fmt, args);
l1 = trace_puts (buf);
Expand Down
2 changes: 2 additions & 0 deletions src/firewall.c
Original file line number Diff line number Diff line change
Expand Up @@ -1967,8 +1967,10 @@ BOOL fw_init (void)

TRACE (2, "fw_module: '%s', fw_logged_on_user: '%s'.\n", fw_module, fw_logged_on_user);

#if 0 /* todo ? */
if (g_cfg.firewall.show_all == 0)
exclude_list_add (fw_module, EXCL_PROGRAM);
#endif

fw_check_n_format (TRUE, FALSE);

Expand Down

0 comments on commit 28ef244

Please sign in to comment.