summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-21 00:32:01 +0100
committerMichael Adam <obnox@samba.org>2008-01-21 08:49:12 +0100
commit42641d6321ca88efa07137af5ed17c3a17e9dcbf (patch)
tree322e69bc094c2fd471d2435c20ad5d5e7e28bc4e /source3
parent99186bf72642ad81505cb9588a444da4e89b3be2 (diff)
downloadsamba-42641d6321ca88efa07137af5ed17c3a17e9dcbf.tar.gz
samba-42641d6321ca88efa07137af5ed17c3a17e9dcbf.tar.bz2
samba-42641d6321ca88efa07137af5ed17c3a17e9dcbf.zip
Extend/fix comments.
Michael (This used to be commit 4952417fca89f5d797c861cde9fe74050ae02e2f)
Diffstat (limited to 'source3')
-rw-r--r--source3/Makefile.in2
-rw-r--r--source3/registry/reg_init_full.c (renamed from source3/registry/reg_frontend.c)4
2 files changed, 4 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 674dd2aa40..df0c99d851 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -434,7 +434,7 @@ REGISTRY_BACKENDS = registry/reg_backend_printing.o \
registry/reg_backend_perflib.o
-REGISTRY_OBJ = registry/reg_frontend.o registry/reg_cachehook.o \
+REGISTRY_OBJ = registry/reg_init_full.o registry/reg_cachehook.o \
registry/reg_eventlog.o \
registry/reg_util.o registry/reg_perfcount.o \
registry/reg_util_legacy.o \
diff --git a/source3/registry/reg_frontend.c b/source3/registry/reg_init_full.c
index fa210b4c05..b6a644bb11 100644
--- a/source3/registry/reg_frontend.c
+++ b/source3/registry/reg_init_full.c
@@ -2,6 +2,7 @@
* Unix SMB/CIFS implementation.
* Virtual Windows Registry Layer
* Copyright (C) Gerald Carter 2002-2005
+ * Copyright (C) Michael Adam 2008
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -17,7 +18,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
-/* Implementation of registry frontend view functions. */
+/* Initialize the registry with all available backends. */
#include "includes.h"
@@ -58,6 +59,7 @@ REGISTRY_HOOK reg_hooks[] = {
/***********************************************************************
Open the registry database and initialize the REGISTRY_HOOK cache
+ with all available backens.
***********************************************************************/
bool init_registry( void )