]> git.ipfire.org Git - thirdparty/libnl.git/commitdiff
Fix up naming changes
authorThomas Graf <tgr@plip.localdomain>
Wed, 10 Dec 2008 17:16:31 +0000 (18:16 +0100)
committerThomas Graf <tgr@plip.localdomain>
Wed, 10 Dec 2008 17:16:31 +0000 (18:16 +0100)
lib/cache_mngr.c
lib/nl.c

index 8dbfaf4c7022dfeb0b91b10277bcd484e858fb16..06753164e56334198b4efeb60a44db9c60f386b7 100644 (file)
@@ -172,7 +172,7 @@ int nl_cache_mngr_alloc(struct nl_sock *sk, int protocol, int flags,
                            event_input, mngr);
 
        /* Required to receive async event notifications */
-       nl_disable_sequence_check(mngr->cm_handle);
+       nl_socket_disable_seq_check(mngr->cm_handle);
 
        if ((err = nl_connect(mngr->cm_handle, protocol) < 0))
                goto errout;
index eeebe1449f28ad06f6ff8f6b93af394942d6db9c..15c3ede18f1cc7399048fd1ba7406d6b9db42fc8 100644 (file)
--- a/lib/nl.c
+++ b/lib/nl.c
@@ -115,7 +115,7 @@ int nl_connect(struct nl_sock *sk, int protocol)
        }
 
        if (!(sk->s_flags & NL_SOCK_BUFSIZE_SET)) {
-               err = nl_set_buffer_size(sk, 0, 0);
+               err = nl_socket_set_buffer_size(sk, 0, 0);
                if (err < 0)
                        goto errout;
        }