From 4e6bd74c271b05f039a8be765248d8b8b5085ccb Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 10 Jun 2010 15:05:52 +0200 Subject: [PATCH] findmnt: ungettextize the directions and fix spelling Signed-off-by: Benno Schulenberg --- misc-utils/findmnt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c index c207432b..7f166c8c 100644 --- a/misc-utils/findmnt.c +++ b/misc-utils/findmnt.c @@ -555,13 +555,13 @@ int main(int argc, char *argv[]) flags |= FL_CANONICALIZE; break; case 'd': - if (!strcmp(optarg, _("forward"))) + if (!strcmp(optarg, "forward")) direction = MNT_ITER_FORWARD; - else if (!strcmp(optarg, _("backward"))) + else if (!strcmp(optarg, "backward")) direction = MNT_ITER_BACKWARD; else errx(EXIT_FAILURE, - _("uknown direction '%s')"), optarg); + _("unknown direction '%s')"), optarg); break; case 'e': flags |= FL_EVALUATE; -- 2.39.5