Fix for incorrect error message - found by Alex Davis <alex14641@yahoo.com>.
authorJeremy Allison <jra@samba.org>
Mon, 8 Sep 2003 18:41:42 +0000 (18:41 +0000)
committerJeremy Allison <jra@samba.org>
Mon, 8 Sep 2003 18:41:42 +0000 (18:41 +0000)
Jeremy.
(This used to be commit 28631ef23f855ce91740fd144e3dc235a3ae7af6)

source3/utils/testparm.c

index bb89e4ebf21551247fd472a9cb6743b144b2949c..0a87b4bc1eacd86c2a96d7114fa1ca87c9475abc 100644 (file)
@@ -300,12 +300,12 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
                        }
                        if (lp_map_system(s) && !(lp_create_mask(s) & S_IXGRP)) {
                                printf("Invalid combination of parameters for service %s. \
-                                          Map hidden can only work if create mask includes octal 010 (S_IXGRP).\n",
+                                          Map system can only work if create mask includes octal 010 (S_IXGRP).\n",
                                           lp_servicename(s) );
                        }
                        if (lp_map_system(s) && (lp_force_create_mode(s) & S_IXGRP)) {
                                printf("Invalid combination of parameters for service %s. \
-                                          Map hidden can only work if force create mode excludes octal 010 (S_IXGRP).\n",
+                                          Map system can only work if force create mode excludes octal 010 (S_IXGRP).\n",
                                           lp_servicename(s) );
                        }
                }