Fix up naming changes

This commit is contained in:
Thomas Graf 2008-12-10 18:16:31 +01:00
parent 6782b6f709
commit 664e1deaeb
2 changed files with 2 additions and 2 deletions

View 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;

View file

@ -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;
}