From 5cf58a1b982ba48521942842dd21cca2ca02f4d0 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 11 Sep 2003 01:57:08 +0000 Subject: Fix error message when calling namedtogid() fails adding a group map entry. Bug #431. (This used to be commit bc8a181477866d0d97324bf45431bcdff895ad18) --- source3/utils/net_groupmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/net_groupmap.c b/source3/utils/net_groupmap.c index 9937145230..f99876bbd8 100644 --- a/source3/utils/net_groupmap.c +++ b/source3/utils/net_groupmap.c @@ -258,7 +258,7 @@ static int net_groupmap_add(int argc, const char **argv) } if ( (gid = nametogid(unixgrp)) == (gid_t)-1 ) { - d_printf("Can't lookup UNIX group %s\n", ntgroup); + d_printf("Can't lookup UNIX group %s\n", unixgrp); return -1; } -- cgit