X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fevent.c;h=ead2fdad88833387768d1489f9cf6d161f35de2c;hp=047e9281fe8feabd8790d833780f4e9abe159bc6;hb=c78f9ec47ba92b74698dacdae963dbbefd9b676f;hpb=8b46ab92aeff52b7354bf4f250835f75b4bd824c diff --git a/discover/event.c b/discover/event.c index 047e928..ead2fda 100644 --- a/discover/event.c +++ b/discover/event.c @@ -29,14 +29,14 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action, headerlen = strnlen(buf, len); if (!headerlen) { - pb_log("%s: bad header, no data\n", __func__); + pb_log_fn("bad header, no data\n"); return -1; } /* we should see an @\0 at the head of the buffer */ sep = strchr(buf, '@'); if (!sep) { - pb_log("%s: bad header: %s\n", __func__, buf); + pb_log_fn("bad header: %s\n", buf); return -1; } @@ -58,12 +58,12 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action, else if (streq(buf, "plugin")) *action = EVENT_ACTION_PLUGIN; else { - pb_log("%s: unknown action: %s\n", __func__, buf); + pb_log_fn("unknown action: %s\n", buf); return -1; } if (!*(sep + 1)) { - pb_log("%s: bad device: %s\n", __func__, buf); + pb_log_fn("bad device: %s\n", buf); return -1; }