maintainer fix
- Date: Thu, 24 Nov 1994 10:52:37 +0100
! This patch is only for people who use the database software to
! update databases
Maintainer verification did not work for non-split databases. Please
apply the following patch using:
patch -l < "a file where you have put the patch below in"
in the src directory of the DB software. It patches maintainer.pl (4
lines I think). Don't forget to do a "make" in the DB home directory
after.
-Marten
*** /ncc/Dbase/src/maintainer.pl Thu Nov 17 14:49:39 1994
--- maintainer.pl Thu Nov 24 10:35:38 1994
***************
*** 2 ****
! # $Revision: 1.3 $
--- 2 ----
! # $Revision: 1.4 $
***************
*** 4 ****
! # $Date: 1994/10/05 12:35:44 $
--- 4 ----
! # $Date: 1994/11/24 09:35:37 $
***************
*** 110 ****
--- 111 ----
+ local($dbfile);
***************
*** 117 ****
! if (&dbopen(i, *nothing, 0, "$DBFILE{$source}.mt")) {
--- 118,123 ----
! if ($TYPE{$source} eq "SPLIT") {
! $dbfile = "$DBFILE{$source}.mt";
! } else {
! $dbfile = $DBFILE{$source};
! }
! if (&dbopen(i, *nothing, 0, $dbfile)) {