diff options
author | Michael Adam <obnox@samba.org> | 2011-03-02 23:00:58 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-03-22 22:49:56 +0100 |
commit | 82853a613ba854661aa3d36ae5f0f0f11c13ce26 (patch) | |
tree | 8eefe4979743a15081d63836f30bf3a5c8a27aad /source3/include | |
parent | 98854207feb4af953226db6bbf8169e2d44cfa5b (diff) | |
download | samba-82853a613ba854661aa3d36ae5f0f0f11c13ce26.tar.gz samba-82853a613ba854661aa3d36ae5f0f0f11c13ce26.tar.bz2 samba-82853a613ba854661aa3d36ae5f0f0f11c13ce26.zip |
s3:idmap: remove the params argument from the init function
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/idmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/idmap.h b/source3/include/idmap.h index 7b3d6decf2..800e69421d 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -45,7 +45,7 @@ struct idmap_domain { struct idmap_methods { /* Called when backend is first loaded */ - NTSTATUS (*init)(struct idmap_domain *dom, const char *params); + NTSTATUS (*init)(struct idmap_domain *dom); /* Map an array of uids/gids to SIDs. The caller specifies the uid/gid and type. Gets back the SID. */ |