From a2c6e0e0beb75e0a8fa7e3e07e9443d97ea2b731 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 3 Nov 2008 17:18:49 -0500 Subject: Add support for dbus comunication in the nss service Add utility function in confdb Make all component fetch the dbus socket from the confdb --- server/confdb/confdb.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'server/confdb/confdb.c') diff --git a/server/confdb/confdb.c b/server/confdb/confdb.c index 18b369caf..1dd799827 100644 --- a/server/confdb/confdb.c +++ b/server/confdb/confdb.c @@ -282,6 +282,40 @@ done: return ret; } +int confdb_get_string(struct confdb_ctx *cdb, TALLOC_CTX *ctx, + const char *section, const char *attribute, + const char *defstr, char **result) +{ + char **values; + char *restr; + int ret; + + ret = confdb_get_param(cdb, ctx, section, attribute, &values); + if (ret != EOK) { + return ret; + } + + if (values[0]) { + if (values[1] != NULL) { + /* too many values */ + talloc_free(values); + return EINVAL; + } + restr = talloc_steal(ctx, values[0]); + } else { + restr = talloc_strdup(ctx, defstr); + } + if (!restr) { + talloc_free(values); + return ENOMEM; + } + + talloc_free(values); + + *result = restr; + return EOK; +} + static int confdb_test(struct confdb_ctx *cdb) { char **values; -- cgit