Change some _() into U_() since they are used for warn/fatal.

We always want to issue warnings in the user's locale.
This commit is contained in:
Todd C. Miller
2017-12-11 08:07:01 -07:00
parent b68554b7cf
commit bbc43b5e30
2 changed files with 9 additions and 9 deletions

View File

@@ -312,7 +312,7 @@ parse_args(int argc, char **argv, int *nargc, char ***nargv,
break;
case 'C':
if (strtonum(optarg, 3, INT_MAX, NULL) == 0) {
sudo_warnx(_("the argument to -C must be a number greater than or equal to 3"));
sudo_warnx(U_("the argument to -C must be a number greater than or equal to 3"));
usage(1);
}
sudo_settings[ARG_CLOSEFROM].value = optarg;