--- filters.c.orig Thu Feb 24 09:55:37 1994 +++ filters.c Sun Jan 5 13:51:25 1997 @@ -25,12 +25,17 @@ #include #include +#include #include #include #include #include +#if (defined(BSD) && (BSD >= 199306)) +#include +#endif + #include "manifest.h" #include "contool.h" #include "contool_ui.h" @@ -122,8 +127,14 @@ { cond_free(f->start); +#if (defined(BSD) && (BSD >= 199306)) + regfree(f->start_re); +#endif cond_free(f->start_re); cond_free(f->stop); +#if (defined(BSD) && (BSD >= 199306)) + regfree(f->stop_re); +#endif cond_free(f->stop_re); cond_free(f->command); cond_free(f->comment);