Fix up naming changes
This commit is contained in:
parent
6782b6f709
commit
664e1deaeb
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
2
lib/nl.c
2
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue