summaryrefslogtreecommitdiffstats
path: root/source/nsswitch/idmap_ad.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2006-12-12 15:16:26 +0000
committerSimo Sorce <idra@samba.org>2006-12-12 15:16:26 +0000
commit7547f1567eb8de7476edf3ea82201c77bf6f08db (patch)
tree81918ac9c0123206fae4a70f416d9bd4cc63be20 /source/nsswitch/idmap_ad.c
parent442a9f781d6c6931f89cf46b02cebaecff901a77 (diff)
downloadsamba-7547f1567eb8de7476edf3ea82201c77bf6f08db.tar.gz
samba-7547f1567eb8de7476edf3ea82201c77bf6f08db.tar.xz
samba-7547f1567eb8de7476edf3ea82201c77bf6f08db.zip
r20118: Fix some more warnings
Diffstat (limited to 'source/nsswitch/idmap_ad.c')
-rw-r--r--source/nsswitch/idmap_ad.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/nsswitch/idmap_ad.c b/source/nsswitch/idmap_ad.c
index 00438d8ab08..6195684d96c 100644
--- a/source/nsswitch/idmap_ad.c
+++ b/source/nsswitch/idmap_ad.c
@@ -145,11 +145,9 @@ struct idmap_ad_context {
/* Initialize and check conf is appropriate */
static NTSTATUS idmap_ad_initialize(struct idmap_domain *dom, const char *params)
{
- NTSTATUS ret;
struct idmap_ad_context *ctx;
char *config_option;
const char *range;
- const char *tmp;
ADS_STRUCT *ads;
/* verify AD is reachable (not critical, we may just be offline at start) */
@@ -375,13 +373,12 @@ again:
}
for (i = 0; i < count; i++) {
- LDAPMessage *entry;
+ LDAPMessage *entry = NULL;
DOM_SID sid;
enum id_type type;
struct id_map *map;
uint32_t id;
uint32_t atype;
- int n;
if (i == 0) { /* first entry */
entry = ads_first_entry(ads, res);
@@ -587,13 +584,12 @@ again:
}
for (i = 0; i < count; i++) {
- LDAPMessage *entry;
+ LDAPMessage *entry = NULL;
DOM_SID sid;
enum id_type type;
struct id_map *map;
uint32_t id;
uint32_t atype;
- int n;
if (i == 0) { /* first entry */
entry = ads_first_entry(ads, res);