diff --git a/eve.c b/eve.c index 7bcd04e..9b43a2f 100644 --- a/eve.c +++ b/eve.c @@ -197,10 +197,10 @@ int EveSwitchLog(Eve *eve, EvePar *par, int on) { if (on) { if (par->log == NULL) { if (par->name[0] == '\0') { - par->log = LoggerMake(eve->evc->pName, eve->period); + par->log = LoggerMake(eve->evc->pName, eve->period, 0); } else { snprintf(buf, sizeof buf, "%s.%s", eve->evc->pName, par->name); - par->log = LoggerMake(buf, eve->period); + par->log = LoggerMake(buf, eve->period, 0); } if (par->log == NULL) { return BADLOG; diff --git a/hardsup/makefile_linux b/hardsup/makefile_linux index c381117..adae6c6 100644 --- a/hardsup/makefile_linux +++ b/hardsup/makefile_linux @@ -9,6 +9,6 @@ include ../../linux_def CC = gcc -CFLAGS = -g -DLINUX $(DFORTIFY) -I. -Wall -Wno-unused +CFLAGS = -g -DLINUX $(DFORTIFY) -I. -I../.. -Wall -Wno-unused include make_gen diff --git a/ipsdriv.c b/ipsdriv.c index b5cee6a..5395364 100644 --- a/ipsdriv.c +++ b/ipsdriv.c @@ -343,7 +343,7 @@ static int IpsChangeField(long pc, IpsDriv *me) { EveWrite(eve, "X"); FSM_NEXT IpsStatus(me); /* just check for errors */ - if (time(NULL) < me->tim + 3) goto stab3; /* stabilize */ + if (time(NULL) < me->tim + 10) goto stab3; /* stabilize */ EveWrite(eve, "A0"); /* hold */ FSM_NEXT diff --git a/tecs/makefile_slinux b/tecs/makefile_slinux index 38bdb4e..50c3c46 100644 --- a/tecs/makefile_slinux +++ b/tecs/makefile_slinux @@ -11,7 +11,7 @@ SICS=.. CC = gcc FC = g77 -CFLAGS = -DLINUX -g $(DFORTIFY) -I../.. -I. -Wall -Wno-missing-braces +CFLAGS = -DLINUX -g $(DFORTIFY) -I../.. -I.. -I. -Wall -Wno-missing-braces FFLAGS = -Wimplicit -g ARFLAGS = cr