]> git.ozlabs.org Git - petitboot/blobdiff - discover/event.c
ui/ncurses: Always provide a key definition for backtab
[petitboot] / discover / event.c
index 0ccd3910e18396e989fe58ce8e8e423be6716373..6434b40d39cd944c90cd93ab8681617b3b721ba6 100644 (file)
@@ -2,7 +2,6 @@
 #include "config.h"
 #endif
 
-#define _GNU_SOURCE
 #include <string.h>
 
 #include <log/log.h>
@@ -50,6 +49,8 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action,
                *action = EVENT_ACTION_REMOVE;
        else if (streq(buf, "conf"))
                *action = EVENT_ACTION_CONF;
+       else if (streq(buf, "dhcp"))
+               *action = EVENT_ACTION_DHCP;
        else {
                pb_log("%s: unknown action: %s\n", __func__, buf);
                return -1;