- Removed slit 5 from amorset.c

- poldizug now sends all codes all the time
- polterwrite writes the filename again
- sanswave has been modifed to support the new second generation velocity
  selector
- sinqhttprot has been mdified to copy data to nodes, this for the second
  generation HM object
- tasscan suppressed some output
This commit is contained in:
koennecke
2009-05-15 13:24:02 +00:00
parent 5d30c7b5b9
commit caf59ef8eb
12 changed files with 225 additions and 87 deletions

View File

@ -68,12 +68,12 @@ static int communicateSLS(pSLSDriv self, char *command,
if (strstr(reply, "ERROR") != NULL) {
pPtr = reply;
/* jump over error */
pPtr = stptok(pPtr, "text", 80, ":");
pPtr = stptok(pPtr, text, 80, ":");
/* read error number */
pPtr = stptok(pPtr, "text", 80, ":");
pPtr = stptok(pPtr, text, 80, ":");
self->iError = atoi(trim(text));
/* read error description */
pPtr = stptok(pPtr, "text", 80, ":");
pPtr = stptok(pPtr, text, 80, ":");
strncpy(self->errorText, text, 80);
return DEVERR;
}