wb-ndr: remove unused print/parse_sidlist()
authorStefan Metzmacher <metze@sernet.de>
Tue, 11 Mar 2008 19:58:13 +0000 (20:58 +0100)
committerStefan Metzmacher <metze@sernet.de>
Fri, 2 May 2008 14:13:38 +0000 (16:13 +0200)
metze

source/winbindd/winbindd_async.c

index cac0b1a80389fc3b906a4bdc4bcfae9bdab381b4..e188405bf1a32f041c81d29914d8c42aba5eb5e3 100644 (file)
@@ -773,59 +773,6 @@ nomem:
        return;
 }
 
-bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
-                  size_t num_sids, char **result, ssize_t *len)
-{
-       size_t i;
-       size_t buflen = 0;
-
-       *len = 0;
-       *result = NULL;
-       for (i=0; i<num_sids; i++) {
-               fstring tmp;
-               sprintf_append(mem_ctx, result, len, &buflen,
-                              "%s\n", sid_to_fstring(tmp, &sids[i]));
-       }
-
-       if ((num_sids != 0) && (*result == NULL)) {
-               return False;
-       }
-
-       return True;
-}
-
-static bool parse_sidlist(TALLOC_CTX *mem_ctx, char *sidstr,
-                         DOM_SID **sids, size_t *num_sids)
-{
-       char *p, *q;
-
-       p = sidstr;
-       if (p == NULL)
-               return False;
-
-       while (p[0] != '\0') {
-               DOM_SID sid;
-               q = strchr(p, '\n');
-               if (q == NULL) {
-                       DEBUG(0, ("Got invalid sidstr: %s\n", p));
-                       return False;
-               }
-               *q = '\0';
-               q += 1;
-               if (!string_to_sid(&sid, p)) {
-                       DEBUG(0, ("Could not parse sid %s\n", p));
-                       return False;
-               }
-               if (!NT_STATUS_IS_OK(add_sid_to_array(mem_ctx, &sid, sids,
-                                                     num_sids)))
-               {
-                       return False;
-               }
-               p = q;
-       }
-       return True;
-}
-
 bool parse_ridlist(TALLOC_CTX *mem_ctx, char *ridstr,
                   uint32 **rids, size_t *num_rids)
 {