cannot -> "unable to" in warning/error messages

This commit is contained in:
Todd C. Miller
2011-05-18 12:41:06 -04:00
parent 6f8cd91928
commit fce0b906eb
12 changed files with 21 additions and 21 deletions

View File

@@ -191,7 +191,7 @@ relabel_tty(const char *ttyn, int ptyfd)
/* Reopen pty that was relabeled, std{in,out,err} are reset later. */
se_state.ttyfd = open(ttyn, O_RDWR|O_NOCTTY, 0);
if (se_state.ttyfd == -1) {
warning(_("cannot open %s"), ttyn);
warning(_("unable to open %s"), ttyn);
if (se_state.enforcing)
goto bad;
}