diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-03-29 16:48:16 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-05-01 01:17:13 -0400 |
commit | 260800142071a3a33e4523c7578358c6e29c0f53 (patch) | |
tree | 354bc7ce1d879583bae12323b3c3901b9041f158 /net | |
parent | e9b1c9c98c051f49a76dcd76f914c02653aecccb (diff) |
SUNRPC: switch the RPC server to use the new rpcbind registration API
Eventually this interface will support versions 3 and 4 of the rpcbind
protocol, which will allow the Linux RPC server to register services on
IPv6 addresses.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index b4db53ff1435..b7503c103ae8 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
@@ -757,7 +757,7 @@ svc_register(struct svc_serv *serv, int proto, unsigned short port) | |||
757 | if (progp->pg_vers[i]->vs_hidden) | 757 | if (progp->pg_vers[i]->vs_hidden) |
758 | continue; | 758 | continue; |
759 | 759 | ||
760 | error = rpc_register(progp->pg_prog, i, proto, port, &dummy); | 760 | error = rpcb_register(progp->pg_prog, i, proto, port, &dummy); |
761 | if (error < 0) | 761 | if (error < 0) |
762 | break; | 762 | break; |
763 | if (port && !dummy) { | 763 | if (port && !dummy) { |