- remob.c: forward errors to sics correctly

- minor, more cosmetic fixes
This commit is contained in:
2015-04-28 16:17:32 +02:00
parent 04906f672a
commit fb7741178d
5 changed files with 47 additions and 24 deletions

View File

@ -388,6 +388,12 @@ int AsconBaseHandler(Ascon * a)
}
void AsconInsertProtocol(AsconProtocol *protocol) {
AsconProtocol *p;
for (p = protocols; p != NULL; p = p->next) {
if (p == protocol)
return;
}
protocol->next = protocols;
protocols = protocol;
}