]> andersk Git - moira.git/commitdiff
remove support for settng type STRING owners. Left over from blanche,
authorzacheiss <zacheiss>
Wed, 5 Apr 2000 22:03:52 +0000 (22:03 +0000)
committerzacheiss <zacheiss>
Wed, 5 Apr 2000 22:03:52 +0000 (22:03 +0000)
and didn't work.

clients/stella/stella.c

index 14558fe1b8e28314e1ca7eb8fa278aeed2c26bfb..2150efea9d4ed020b2dcd3fd75777d3a34ddd96e 100644 (file)
@@ -39,13 +39,11 @@ struct string_list {
   struct string_list *next;
 };
 
-/* It is important to membercmp that M_USER < M_LIST < M_STRING */
 #define M_ANY          0
 #define M_USER         1
 #define M_LIST         2
-#define M_STRING       3
-#define M_KERBEROS     4
-#define        M_NONE          5
+#define M_KERBEROS     3
+#define M_NONE         4
 
 /* argument parsing macro */
 #define argis(a, b) (!strcmp(*arg + 1, a) || !strcmp(*arg + 1, b))
@@ -742,8 +740,6 @@ struct owner_type *parse_member(char *s)
        m->type = M_USER;
       else if (!strcasecmp("list", s))
        m->type = M_LIST;
-      else if (!strcasecmp("string", s))
-       m->type = M_STRING;
       else if (!strcasecmp("kerberos", s))
        m->type = M_KERBEROS;
       else if (!strcasecmp("none", s))
This page took 2.52233 seconds and 5 git commands to generate.