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:
Cy Schubert 2017-05-14 21:18:01 +00:00
parent df630de5e1
commit 37e2d2e695

View File

@ -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