Dave Barnett <ba...@ho...> writes:
> I just downloaded the 2.2 Beta release, and have attempted to
> build/install it on my linux box at home, without much luck.
try the following patch. it's against 3.0beta1 sources so you may need
to apply it manually:
RCS file: /home/istvan/CVS/modules/error.c,v
retrieving revision 1.1.1.1
retrieving revision 1.3
diff -u -r1.1.1.1 -r1.3
--- error.c 1998/11/25 06:23:37 1.1.1.1
+++ error.c 1999/01/06 22:43:33 1.3
@@ -894,7 +894,7 @@
** for every single facility
**/
- for( fac = strtok( facilities, ":");
+ for( fac = strtok( strdup( facilities ), ":");
fac;
fac = strtok( (char *) NULL, ":") ) {
--
Istvan
|