2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 22:05:46 +00:00

Minor warning/error message cleanup

This commit is contained in:
Todd C. Miller
2011-05-18 13:04:24 -04:00
parent fce0b906eb
commit 7960bde2db
8 changed files with 36 additions and 31 deletions

View File

@@ -122,7 +122,7 @@ static int fork_cmnd(struct command_details *details, int sv[2])
child = fork();
switch (child) {
case -1:
error(1, "fork");
error(1, _("unable to fork"));
break;
case 0:
/* child */