Hi, folks. I just fixed up in the 3.2 htmerge code, what I thought
looked like a pretty apparent bug. (Patch below, committed to CVS a few
minutes ago.) It would seem to me that the code would never have worked
right as it was, so I figure no one ever tested htmerge -m since the
changes to the database organization a month or so ago. Any volunteers?
--- htmerge/db.cc.orig Thu Mar 11 19:18:15 1999
+++ htmerge/db.cc Wed Apr 28 10:44:35 1999
@@ -40,10 +40,10 @@ mergeDB()
merge_db.
SetCompatibility(merge_config.Boolean("uncoded_db_compatible", 1));
- merge_doc_index = config["doc_index"];
+ merge_doc_index = merge_config["doc_index"];
if (access(merge_doc_index, R_OK) < 0)
{
- reportError(form("Unable to open document index '%s'", doc_index));
+ reportError(form("Unable to open document index '%s'", merge_doc_index));
}
merge_doc_db = merge_config["doc_db"];
if (merge_db.Open(merge_doc_db, merge_doc_index) < 0)
--
Gilles R. Detillieux E-mail: <[EMAIL PROTECTED]>
Spinal Cord Research Centre WWW: http://www.scrc.umanitoba.ca/~grdetil
Dept. Physiology, U. of Manitoba Phone: (204)789-3766
Winnipeg, MB R3E 3J7 (Canada) Fax: (204)789-3930
------------------------------------
To unsubscribe from the htdig3-dev mailing list, send a message to
[EMAIL PROTECTED] containing the single word "unsubscribe" in
the SUBJECT of the message.