]> granicus.if.org Git - libnl/commitdiff
test-cache-mngr: Let the cache manager allocate the socket
authorThomas Graf <tgraf@redhat.com>
Sat, 21 Apr 2012 10:14:11 +0000 (12:14 +0200)
committerThomas Graf <tgraf@redhat.com>
Sat, 21 Apr 2012 10:14:11 +0000 (12:14 +0200)
tests/test-cache-mngr.c

index 2c917dad09a18c93f6378b73c0a4cb979c4238de..528ae18f9c6dec506e4f1ecd301ba8a2c881f7e0 100644 (file)
@@ -32,13 +32,11 @@ int main(int argc, char *argv[])
 {
        struct nl_cache_mngr *mngr;
        struct nl_cache *lc, *nc, *ac, *rc;
-       struct nl_sock *sock;
        int err;
 
        signal(SIGINT, sigint);
 
-       sock = nl_cli_alloc_socket();
-       err = nl_cache_mngr_alloc(sock, NETLINK_ROUTE, NL_AUTO_PROVIDE, &mngr);
+       err = nl_cache_mngr_alloc(NULL, NETLINK_ROUTE, NL_AUTO_PROVIDE, &mngr);
        if (err < 0)
                nl_cli_fatal(err, "Unable to allocate cache manager: %s",
                             nl_geterror(err));
@@ -67,7 +65,6 @@ int main(int argc, char *argv[])
        }
 
        nl_cache_mngr_free(mngr);
-       nl_socket_free(sock);
 
        return 0;
 }