Linked epics statically

This commit is contained in:
2014-04-10 10:53:18 +02:00
parent 722fab935e
commit 8e1ac545ce
8 changed files with 15 additions and 11 deletions

View File

@ -315,7 +315,7 @@ static pHdb CreateMotorAdapter(char *name, pMotor pMot)
DeleteHipadabaNode(result, NULL);
return NULL;
}
result->protected = 1;
result->iprotected = 1;
return result;
}
@ -499,7 +499,7 @@ static pHdb MakeSicsVarNode(pSicsVariable pVar, char *name)
snprintf(command, 1023, "%s ", pVar->name);
SetHdbProperty(node, "sicscommand", command);
node->protected = 1;
node->iprotected = 1;
return node;
}