]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
l2tp: calling the ref() instead of deref()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 22 Mar 2013 18:33:15 +0000 (21:33 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 22 Mar 2013 18:39:24 +0000 (14:39 -0400)
This is a cut and paste typo.  We call ->ref() a second time instead
of ->deref().

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/l2tp/l2tp_core.c

index 8aecf5df66569a6ca0ae1b8921e20954d6812336..6984c3a353cd003bc91150485faeecefa078c763 100644 (file)
@@ -1777,7 +1777,7 @@ int l2tp_session_delete(struct l2tp_session *session)
        if (session->session_close != NULL)
                (*session->session_close)(session);
        if (session->deref)
-               (*session->ref)(session);
+               (*session->deref)(session);
        l2tp_session_dec_refcount(session);
        return 0;
 }