]> granicus.if.org Git - sudo/commitdiff
Change some _() into U_() since they are used for warn/fatal.
authorTodd C. Miller <Todd.Miller@sudo.ws>
Mon, 11 Dec 2017 15:07:01 +0000 (08:07 -0700)
committerTodd C. Miller <Todd.Miller@sudo.ws>
Mon, 11 Dec 2017 15:07:01 +0000 (08:07 -0700)
We always want to issue warnings in the user's locale.

src/parse_args.c
src/sudo_edit.c

index 210c62e594524970b24e4a348163abff9c2e0723..ab5690aeaf9bcfc0a4a6e4b68fce46ce49ec9cc4 100644 (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;
index 214fc260fe5e7d81dd556ac652396ff3e98b67d4..5698443a44dd083caa93967fd38f9a5fc087fee5 100644 (file)
@@ -175,7 +175,7 @@ sudo_openat(int dfd, const char *path, int flags, mode_t mode)
 
     /* Restore cwd */
     if (fchdir(odfd) == -1)
-       sudo_fatal(_("unable to restore current working directory"));
+       sudo_fatal(U_("unable to restore current working directory"));
     close(odfd);
 
     debug_return_int(fd);
@@ -264,7 +264,7 @@ done:
     /* Restore cwd */
     if (odfd != -1) {
        if (fchdir(odfd) == -1)
-           sudo_fatal(_("unable to restore current working directory"));
+           sudo_fatal(U_("unable to restore current working directory"));
        close(odfd);
     }
 
@@ -812,11 +812,11 @@ selinux_edit_create_tfiles(struct command_details *command_details,
     case SESH_SUCCESS:
        break;
     case SESH_ERR_BAD_PATHS:
-       sudo_fatalx(_("sesh: internal error: odd number of paths"));
+       sudo_fatalx(U_("sesh: internal error: odd number of paths"));
     case SESH_ERR_NO_FILES:
-       sudo_fatalx(_("sesh: unable to create temporary files"));
+       sudo_fatalx(U_("sesh: unable to create temporary files"));
     default:
-       sudo_fatalx(_("sesh: unknown error %d"), rc);
+       sudo_fatalx(U_("sesh: unknown error %d"), rc);
     }
 
     /* Restore saved command_details. */
@@ -906,15 +906,15 @@ selinux_edit_copy_tfiles(struct command_details *command_details,
            ret = 0;
            break;
        case SESH_ERR_NO_FILES:
-           sudo_warnx(_("unable to copy temporary files back to their original location"));
+           sudo_warnx(U_("unable to copy temporary files back to their original location"));
            sudo_warnx(U_("contents of edit session left in %s"), edit_tmpdir);
            break;
        case SESH_ERR_SOME_FILES:
-           sudo_warnx(_("unable to copy some of the temporary files back to their original location"));
+           sudo_warnx(U_("unable to copy some of the temporary files back to their original location"));
            sudo_warnx(U_("contents of edit session left in %s"), edit_tmpdir);
            break;
        default:
-           sudo_warnx(_("sesh: unknown error %d"), rc);
+           sudo_warnx(U_("sesh: unknown error %d"), rc);
            break;
        }
     }