From 789aa9aab2b99ae1466a67e3f505abbc67a3e7cb Mon Sep 17 00:00:00 2001 From: Gregor Beck Date: Fri, 14 Oct 2011 10:57:11 +0200 Subject: s3:registry: do not use regdb functions during db upgrade It is importante to not use the database backend implementation in the upgrade. Otherwise this would only work as long as this is the newset version. In future versions of the registry, this (then) intermediate upgrade step would change in behaviour and not work as expected any more. Signed-off-by: Michael Adam --- source3/Makefile.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index 62504fd941..3cdf9b651f 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -682,6 +682,8 @@ REG_BASE_OBJ = registry/reg_api.o \ registry/reg_util_internal.o \ lib/util_nttoken.o \ $(REG_BACKENDS_BASE_OBJ) \ + registry/reg_parse_internal.o \ + lib/cbuf.o lib/srprs.o \ $(REG_INIT_BASIC_OBJ) REG_SMBCONF_OBJ = $(REG_BASE_OBJ) \ @@ -1219,8 +1221,8 @@ NET_OBJ1 = utils/net.o utils/net_ads.o utils/net_help.o \ rpc_client/init_netlogon.o \ rpc_client/init_samr.o \ registry/reg_parse.o registry/reg_format.o \ - registry/reg_parse_internal.o registry/reg_import.o \ - lib/cbuf.o lib/srprs.o printing/nt_printing_migrate.o + registry/reg_import.o \ + printing/nt_printing_migrate.o # these are not processed by make proto NET_OBJ2 = utils/net_registry_util.o utils/net_help_common.o -- cgit