diff options
author | Mateusz Slupny <mateusz.slupny@appeartv.com> | 2016-11-29 12:09:49 +0100 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2017-02-19 22:24:56 -0500 |
commit | e30af139739e3a6e587d77a9af999035fe20dc37 (patch) | |
tree | daf7cc9f049223fa9b05888d4fa7d5a2808779be /rpc | |
parent | bcea9e274fc13c56431e1b0553661b4048c206ca (diff) |
rpc: fix obvious typo in cleanup code in rpc_clnt_notify
Change-Id: I003e38b238704d3345d46688355bcf3702455ba1
BUG: 1399593
Signed-off-by: Mateusz Slupny <mateusz.slupny@appeartv.com>
[ndevos: rebased after I8ff5d1a32 moved the code around]
Reviewed-on: https://review.gluster.org/15969
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Tested-by: Niels de Vos <ndevos@redhat.com>
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Prashanth Pai <ppai@redhat.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/rpc-lib/src/rpc-clnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/rpc-lib/src/rpc-clnt.c b/rpc/rpc-lib/src/rpc-clnt.c index d39b5236b91..6683718164b 100644 --- a/rpc/rpc-lib/src/rpc-clnt.c +++ b/rpc/rpc-lib/src/rpc-clnt.c @@ -901,7 +901,7 @@ rpc_clnt_handle_disconnect (struct rpc_clnt *clnt, rpc_clnt_connection_t *conn) clnt->notifyfn (clnt, clnt->mydata, RPC_CLNT_DISCONNECT, NULL); if (unref_clnt) - rpc_clnt_ref (clnt); + rpc_clnt_unref (clnt); return 0; } |