1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

s3: Remove some unused code

This commit is contained in:
Volker Lendecke 2010-11-16 16:09:04 +01:00
parent 3e055cc830
commit 705d93d2ad
2 changed files with 0 additions and 23 deletions

View File

@ -27,27 +27,6 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_WINBIND
bool print_sidlist(TALLOC_CTX *mem_ctx, const struct dom_sid *sids,
uint32_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;
}
bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
struct dom_sid **sids, uint32_t *num_sids)
{

View File

@ -57,8 +57,6 @@ NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
/* The following definitions come from winbindd/winbindd_async.c */
bool print_sidlist(TALLOC_CTX *mem_ctx, const struct dom_sid *sids,
uint32_t num_sids, char **result, ssize_t *len);
bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
struct dom_sid **sids, uint32_t *num_sids);