From 65105aafb45dbb6d59da411a98b41dbdc4c1a0c7 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 5 May 2010 18:23:45 +0200 Subject: s3-spoolss: remove unused winreg_enumval_to_blob(). Guenther --- source3/rpc_server/srv_spoolss_util.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/source3/rpc_server/srv_spoolss_util.c b/source3/rpc_server/srv_spoolss_util.c index ef136eb37e..1752329e4c 100644 --- a/source3/rpc_server/srv_spoolss_util.c +++ b/source3/rpc_server/srv_spoolss_util.c @@ -1139,26 +1139,6 @@ static WERROR winreg_enumval_to_multi_sz(TALLOC_CTX *mem_ctx, return WERR_OK; } -static WERROR winreg_enumval_to_blob(TALLOC_CTX *mem_ctx, - struct spoolss_PrinterEnumValues *v, - const char *valuename, - DATA_BLOB *blob) -{ - /* just return if it is not the one we are looking for */ - if (strcmp(valuename, v->value_name) != 0) { - return WERR_NOT_FOUND; - } - - if (v->type != REG_BINARY) { - return WERR_INVALID_DATATYPE; - } - - blob->data = v->data->data; - blob->length = v->data_length; - - return WERR_OK; -} - static WERROR winreg_printer_write_date(TALLOC_CTX *mem_ctx, struct rpc_pipe_client *pipe_handle, struct policy_handle *key_handle, -- cgit