From 5fe2abb2f85afe2e8655257446c7dd03a08b2d57 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 20 Sep 2010 11:20:37 +0200 Subject: s3:services_db: remove unused legacy function svcctl_fetch_regvalues(). --- source3/services/services_db.c | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'source3/services/services_db.c') diff --git a/source3/services/services_db.c b/source3/services/services_db.c index bd34ad113c..4afbf61581 100644 --- a/source3/services/services_db.c +++ b/source3/services/services_db.c @@ -691,40 +691,3 @@ const char *svcctl_lookup_description(TALLOC_CTX *ctx, const char *name, struct return description; } - -/******************************************************************** -********************************************************************/ - -struct regval_ctr *svcctl_fetch_regvalues(const char *name, struct security_token *token) -{ - struct registry_key_handle *key = NULL; - struct regval_ctr *values = NULL; - char *path = NULL; - WERROR wresult; - - /* now add the security descriptor */ - - if (asprintf(&path, "%s\\%s", KEY_SERVICES, name) < 0) { - return NULL; - } - wresult = regkey_open_internal( NULL, &key, path, token, - REG_KEY_READ ); - if ( !W_ERROR_IS_OK(wresult) ) { - DEBUG(0,("svcctl_fetch_regvalues: key lookup failed! [%s] (%s)\n", - path, win_errstr(wresult))); - SAFE_FREE(path); - return NULL; - } - SAFE_FREE(path); - - wresult = regval_ctr_init(NULL, &values); - if (!W_ERROR_IS_OK(wresult)) { - DEBUG(0,("svcctl_fetch_regvalues: talloc() failed!\n")); - TALLOC_FREE( key ); - return NULL; - } - fetch_reg_values( key, values ); - - TALLOC_FREE( key ); - return values; -} -- cgit