From ba62b4278ad584373c5c1ef4535db029218a0658 Mon Sep 17 00:00:00 2001 From: mar Date: Tue, 13 Sep 1988 15:46:52 +0000 Subject: [PATCH] fixed capitalization of a message, and make recursive not the default for administration searches --- clients/moira/lists.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/moira/lists.c b/clients/moira/lists.c index 09ab1c3e..e41d8bc4 100644 --- a/clients/moira/lists.c +++ b/clients/moira/lists.c @@ -198,7 +198,7 @@ Bool name; GetYesNoValueFromUser("Is this a public list", &info[L_PUBLIC]); GetYesNoValueFromUser("Is this a hidden list", &info[L_HIDDEN]); GetYesNoValueFromUser("Is this a maillist", &info[L_MAILLIST]); - GetYesNoValueFromUser("is this a group", &info[L_GROUP]); + GetYesNoValueFromUser("Is this a group", &info[L_GROUP]); if (atoi(info[L_GROUP])) GetValueFromUser("What is the GID for this group.", &info[L_GID]); @@ -757,7 +757,7 @@ ListByAdministrator() BUFSIZ, "user")) ) return(DM_NORMAL); - if ( YesNoQuestion("Do you want a recursive search (y/n)", TRUE) == 1 ) { + if ( YesNoQuestion("Do you want a recursive search (y/n)", FALSE) == 1 ) { sprintf(temp_buf, "R%s", buf); /* "USER" to "RUSER" etc. */ type = Strsave(temp_buf); } -- 2.45.2