summaryrefslogtreecommitdiffstats
path: root/source/sam
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-06-26 18:26:52 +0000
committerJeremy Allison <jra@samba.org>2003-06-26 18:26:52 +0000
commit030b35ca0fc9fe49610084c6c1be95241157564b (patch)
tree26b98e7435352d29d5cfbf36d5c36e49100dd501 /source/sam
parentb9b46d43c7c39d6738c254c4a148bdb93cae02e3 (diff)
downloadsamba-030b35ca0fc9fe49610084c6c1be95241157564b.tar.gz
samba-030b35ca0fc9fe49610084c6c1be95241157564b.tar.xz
samba-030b35ca0fc9fe49610084c6c1be95241157564b.zip
As has been pointed out, ordering here doesn't matter so use normal
add. Jeremy.
Diffstat (limited to 'source/sam')
-rw-r--r--source/sam/idmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sam/idmap.c b/source/sam/idmap.c
index 7b4261169fc..d2f68acf606 100644
--- a/source/sam/idmap.c
+++ b/source/sam/idmap.c
@@ -59,7 +59,7 @@ static struct idmap_methods *get_methods(const char *name)
NTSTATUS smb_register_idmap(int version, const char *name, struct idmap_methods *methods)
{
- struct idmap_function_entry *entry, *tmp;
+ struct idmap_function_entry *entry;
if ((version != SMB_IDMAP_INTERFACE_VERSION)) {
DEBUG(0, ("Failed to register idmap module.\n"
@@ -84,7 +84,7 @@ NTSTATUS smb_register_idmap(int version, const char *name, struct idmap_methods
entry->name = smb_xstrdup(name);
entry->methods = methods;
- DLIST_ADD_END(backends, entry, tmp);
+ DLIST_ADD(backends, entry);
DEBUG(5, ("Successfully added idmap backend '%s'\n", name));
return NT_STATUS_OK;
}