From f8b6ac6a08138b247bb00ec1d238a56c9b2d13c7 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 28 Jun 2010 11:48:15 +0200 Subject: s3-eventlog: Fixed the keyname delimiter for the registry key. --- source3/rpc_server/srv_eventlog_nt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_server/srv_eventlog_nt.c') diff --git a/source3/rpc_server/srv_eventlog_nt.c b/source3/rpc_server/srv_eventlog_nt.c index 701dcf08d3..241cbab4f6 100644 --- a/source3/rpc_server/srv_eventlog_nt.c +++ b/source3/rpc_server/srv_eventlog_nt.c @@ -329,7 +329,7 @@ static bool sync_eventlog_params( EVENTLOG_INFO *info ) to use the same fetch/store api that we use in srv_reg_nt.c */ - path = talloc_asprintf(ctx, "%s/%s", KEY_EVENTLOG, elogname ); + path = talloc_asprintf(ctx, "%s\\%s", KEY_EVENTLOG, elogname); if (!path) { goto done; } -- cgit