X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fevent.c;h=1be19eb2a052bd79333c379cfa2d9d3fa5a0248e;hp=79323788368d8c20b5f4f67702bd68337a9fe371;hb=b5f9e34d85075afe7aa87b5ce4a1a2d911468e36;hpb=e1f6ffb9ca9e35738385a3524ba46896a0b519e6 diff --git a/discover/event.c b/discover/event.c index 7932378..1be19eb 100644 --- a/discover/event.c +++ b/discover/event.c @@ -49,10 +49,12 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action, *action = EVENT_ACTION_REMOVE; else if (streq(buf, "url")) *action = EVENT_ACTION_URL; - else if (streq(buf, "conf")) - *action = EVENT_ACTION_CONF; else if (streq(buf, "dhcp")) *action = EVENT_ACTION_DHCP; + else if (streq(buf, "boot")) + *action = EVENT_ACTION_BOOT; + else if (streq(buf, "sync")) + *action = EVENT_ACTION_SYNC; else { pb_log("%s: unknown action: %s\n", __func__, buf); return -1;