2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-29 05:17:59 +00:00

Update error message to indicate it is about a binary profile or cache file

Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
John Johansen 2014-06-17 10:58:09 -07:00
parent 84082805e0
commit 4a753029bb

View File

@ -718,7 +718,7 @@ int process_binary(int option, const char *profilename)
if (profilename) {
fd = open(profilename, O_RDONLY);
if (fd == -1) {
PERROR(_("Error: Could not read profile %s: %s.\n"),
PERROR(_("Error: Could not read binary profile or cache file %s: %s.\n"),
profilename, strerror(errno));
exit(errno);
}