[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Version 2.99.50s19 out..



On Mon, 7 Jun 1999, Matti Aarnio wrote:

> With fixes to most reports I have gotten since s18, but
> propably something has again slipped thru cracks...

The changes to router/libdb/bsdhash.c aren't quite perfect and need this
patch to compile (gleened from the diffs relative to previous version).

Also, the version I checked out from cvs earlier today landed in a state
where all of its dns lookups were failing - no address/no mx found, but
dns was working and some connections succeeded (strange).

		-ben


Index: bsdhash.c
===================================================================
RCS file: /cvsroot/zmailer/router/libdb/bsdhash.c,v
retrieving revision 1.7
diff -u -r1.7 bsdhash.c
--- bsdhash.c	1999/06/06 20:13:59	1.7
+++ bsdhash.c	1999/06/07 01:13:50
@@ -87,7 +87,7 @@
 				DB_CREATE |((flag == O_RDONLY) ? DB_RDONLY:0),
 				0644, NULL, NULL, &db);
 #else
-		  db = dbopen(sip->file, flag, 0, DB_HASH, &BINFO);
+		  db = dbopen(sip->file, flag, 0, DB_HASH, NULL);
 #endif
 		  if (db != NULL)
 		    break;