Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1b7c92b9 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

l2tp: calling the ref() instead of deref()



This is a cut and paste typo.  We call ->ref() a second time instead
of ->deref().

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f3c78f85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}