Home
last modified time | relevance | path

Searched refs:new_rpc (Results 1 – 1 of 1) sorted by relevance

/freebsd/lib/libc/rpc/
H A Dgetrpcent.c660 struct rpcent new_rpc; in rpc_marshal_func() local
704 new_rpc = *rpc; in rpc_marshal_func()
712 if (new_rpc.r_name != NULL) { in rpc_marshal_func()
713 size = strlen(new_rpc.r_name); in rpc_marshal_func()
714 memcpy(p, new_rpc.r_name, size); in rpc_marshal_func()
715 new_rpc.r_name = p; in rpc_marshal_func()
719 if (new_rpc.r_aliases != NULL) { in rpc_marshal_func()
721 memcpy(p, new_rpc.r_aliases, sizeof(char *) * aliases_size); in rpc_marshal_func()
722 new_rpc.r_aliases = (char **)p; in rpc_marshal_func()
725 for (alias = new_rpc.r_aliases; *alias; ++alias) { in rpc_marshal_func()
[all …]