mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Separate the ipfilter function/static string from the error with a
colon (:) in error messages to assist the user in parsing out the error from where or which object the error message refers to. MFC after: 3 days
This commit is contained in:
parent
df630de5e1
commit
37e2d2e695
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ ipf_perror(err, string)
|
|||
if (err == 0)
|
||||
fprintf(stderr, "%s\n", string);
|
||||
else
|
||||
fprintf(stderr, "%s %s\n", string, ipf_strerror(err));
|
||||
fprintf(stderr, "%s: %s\n", string, ipf_strerror(err));
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in a new issue