- Fixed a bug in countersec.c which prevented counting in monitor mode
- Fixes to make the second generation velocity selector driver work - Modified obpar.c to allow parameter changes while running. This makes it possible to collect data at TRICS while cooling down.
This commit is contained in:
6
exeman.c
6
exeman.c
@ -515,7 +515,11 @@ static int handleBatchPath(pExeMan self, SConnection * pCon, int argc,
|
||||
free(self->batchPath);
|
||||
}
|
||||
self->batchPath = strdup(argv[2]);
|
||||
SCSendOK(pCon);
|
||||
if(self->batchPath[0] != '/'){
|
||||
SCPrintf(pCon,eLog, "WARNING: batchpath %s not an absolute path", argv[2]);
|
||||
} else {
|
||||
SCSendOK(pCon);
|
||||
}
|
||||
SCparChange(pCon);
|
||||
return 1;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user