]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/libsystemd-network/test-ipv4ll-manual.c
sd-ipv4ll: fix namespacing
[thirdparty/systemd.git] / src / libsystemd-network / test-ipv4ll-manual.c
index ad664cba5143684b4226ea4389c04a34a0274f8d..dd2e44e7a3d4e0bff26dd939681eb89c5a470fbc 100644 (file)
@@ -45,13 +45,13 @@ static void ll_handler(sd_ipv4ll *ll, int event, void *userdata) {
                 assert_se(in_addr_to_string(AF_INET, (const union in_addr_union*) &addr, &address) >= 0);
 
         switch (event) {
-        case IPV4LL_EVENT_BIND:
+        case SD_IPV4LL_EVENT_BIND:
                 log_info("bound %s", strna(address));
                 break;
-        case IPV4LL_EVENT_CONFLICT:
+        case SD_IPV4LL_EVENT_CONFLICT:
                 log_info("conflict on %s", strna(address));
                 break;
-        case IPV4LL_EVENT_STOP:
+        case SD_IPV4LL_EVENT_STOP:
                 log_error("the client was stopped with address %s", strna(address));
                 break;
         default: