From 411f54059096ff825aae01ead62fb28bceed96c0 Mon Sep 17 00:00:00 2001 From: Serge Hallyn Date: Wed, 21 Dec 2016 12:40:03 -0600 Subject: [PATCH] Fix s/from/to/ in usermod.c error message Closes #49 Signed-off-by: Serge Hallyn --- src/usermod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usermod.c b/src/usermod.c index d72cf85f..68e31e4f 100644 --- a/src/usermod.c +++ b/src/usermod.c @@ -2156,7 +2156,7 @@ int main (int argc, char **argv) unsigned long count = ptr->range.last - ptr->range.first + 1; if (sub_uid_add(user_name, ptr->range.first, count) == 0) { fprintf (stderr, - _("%s: failed to add uid range %lu-%lu from '%s'\n"), + _("%s: failed to add uid range %lu-%lu to '%s'\n"), Prog, ptr->range.first, ptr->range.last, sub_uid_dbname ()); fail_exit (E_SUB_UID_UPDATE); @@ -2182,7 +2182,7 @@ int main (int argc, char **argv) unsigned long count = ptr->range.last - ptr->range.first + 1; if (sub_gid_add(user_name, ptr->range.first, count) == 0) { fprintf (stderr, - _("%s: failed to add gid range %lu-%lu from '%s'\n"), + _("%s: failed to add gid range %lu-%lu to '%s'\n"), Prog, ptr->range.first, ptr->range.last, sub_gid_dbname ()); fail_exit (E_SUB_GID_UPDATE); -- 2.40.0