- 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:
6
slsvme.c
6
slsvme.c
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user