Added reservation for the built-in function names;

This commit is contained in:
Alexander Vdolainen 2016-02-08 22:24:45 +02:00
parent 4c659daa57
commit ac98fb231f

View File

@ -102,6 +102,8 @@ int sxmp_rpclist_add_function(usrtc_t *tree, int type, const char *fu_name,
sxl_rpclist_t *rlist;
sxl_rpc_t *rentry = NULL;
if(*fu_name == '!') return EINVAL; /* reserve such names for ither purposes */
node = usrtc_lookup(tree, &type);
if(!node) return ENOENT;
else tlist = (rpc_typed_list_t *)usrtc_node_getdata(node);