mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00: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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=318281
@ -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 New Issue
Block a user