From 519a8e9cba9df29a396d6509fb71a10ef1aacec0 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 15 Dec 2008 10:35:49 -0500 Subject: Adding a parameter to the sbus_service_sbus_init function to allow passing in an sbus_conn_destructor_fn to the sbus_new_connection() function. Fixing minor warning about the usage of talloc_reference. --- server/nss/nsssrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/nss') diff --git a/server/nss/nsssrv.c b/server/nss/nsssrv.c index a3fd67266..4e911254c 100644 --- a/server/nss/nsssrv.c +++ b/server/nss/nsssrv.c @@ -252,7 +252,7 @@ static int nss_sbus_init(struct nss_ctx *nctx) /* Set up SBUS connection to the monitor */ ss_ctx = sssd_service_sbus_init(nctx, nctx->ev, nctx->cdb, - nss_sbus_methods); + nss_sbus_methods, NULL); if (ss_ctx == NULL) { DEBUG(0, ("Could not initialize D-BUS.\n")); return ENOMEM; -- cgit