s3-eventlog: Fixed the keyname delimiter for the registry key.
authorAndreas Schneider <asn@samba.org>
Mon, 28 Jun 2010 09:48:15 +0000 (11:48 +0200)
committerAndreas Schneider <asn@samba.org>
Mon, 28 Jun 2010 10:56:13 +0000 (12:56 +0200)
source3/rpc_server/srv_eventlog_nt.c

index 701dcf08d3afcb968e3f3c8e5a8b7e0524b66456..241cbab4f61e448f971742bb4a5b73e078785c3d 100644 (file)
@@ -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;
        }