diff options
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 352515a..44a5516 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -412,7 +412,7 @@ DIR *warn_opendir(const char *path) DIR *dp; if ((dp = opendir(path)) == NULL) { - bb_perror_msg("unable to open `%s'", path); + bb_perror_msg("cannot open '%s'", path); return NULL; } return dp; @@ -424,7 +424,7 @@ DIR *xopendir(const char *path) DIR *dp; if ((dp = opendir(path)) == NULL) - bb_perror_msg_and_die("unable to open `%s'", path); + bb_perror_msg_and_die("cannot open '%s'", path); return dp; } |