diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-15 15:14:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:07 -0500 |
commit | 84758bd1f8633d3efe30e293887596db6bfd5e5b (patch) | |
tree | a7b952b9aa3820a51cc085090364cb066c72c927 /source3/nsswitch | |
parent | b759f7c09aebd56711888a75e7902d845c12b2e2 (diff) | |
download | samba-84758bd1f8633d3efe30e293887596db6bfd5e5b.tar.gz samba-84758bd1f8633d3efe30e293887596db6bfd5e5b.tar.bz2 samba-84758bd1f8633d3efe30e293887596db6bfd5e5b.zip |
r22908: All callers of message_init now also call messaging_init. Unify those.
(This used to be commit 330946ad2307ca34f0a8d068a0193fcb8a0d6036)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index ae1078fe02..f4405981d2 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -1125,7 +1125,7 @@ int main(int argc, char **argv, char **envp) /* Initialise messaging system */ - if (!message_init()) { + if (winbind_messaging_context() == NULL) { DEBUG(0, ("unable to initialize messaging system\n")); exit(1); } |