diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-10 17:00:45 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-10 23:08:49 +0200 |
commit | 93126b3315a70d1beaeaa64d05cdbfb167acbabe (patch) | |
tree | fd7555f136bbc9c7b7f96b8cc753c0bfe0f9ed58 /source4/ntp_signd | |
parent | 6280725b47391c69dd7db1133c15bd0ce7418da6 (diff) | |
download | samba-93126b3315a70d1beaeaa64d05cdbfb167acbabe.tar.gz samba-93126b3315a70d1beaeaa64d05cdbfb167acbabe.tar.xz samba-93126b3315a70d1beaeaa64d05cdbfb167acbabe.zip |
samdb: Add flags argument to samdb_connect().
Diffstat (limited to 'source4/ntp_signd')
-rw-r--r-- | source4/ntp_signd/ntp_signd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntp_signd/ntp_signd.c b/source4/ntp_signd/ntp_signd.c index 0147c12d9e4..ae3eeb93f75 100644 --- a/source4/ntp_signd/ntp_signd.c +++ b/source4/ntp_signd/ntp_signd.c @@ -520,7 +520,7 @@ static void ntp_signd_task_init(struct task_server *task) ntp_signd->task = task; /* Must be system to get at the password hashes */ - ntp_signd->samdb = samdb_connect(ntp_signd, task->event_ctx, task->lp_ctx, system_session(task->lp_ctx)); + ntp_signd->samdb = samdb_connect(ntp_signd, task->event_ctx, task->lp_ctx, system_session(task->lp_ctx), 0); if (ntp_signd->samdb == NULL) { task_server_terminate(task, "ntp_signd failed to open samdb", true); return; |