diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-17 11:58:11 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-17 11:58:11 +0200 |
commit | 4945ed32d7dc3e138a7b3776a868676085174dab (patch) | |
tree | 49a7735f7cc627794420e9f214033801aff760f3 /networking | |
parent | 31af3d5a1dbc750d8646f948ce642e6ae57ce880 (diff) |
udhcpc: fix format of one log message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/dhcpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 41bb0b09c..2f8cee3b5 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -41,7 +41,7 @@ static smallint state; /* just a little helper */ static void change_listen_mode(int new_mode) { - log1("entering %s listen mode", + log1("Entering listen mode: %s", new_mode ? (new_mode == 1 ? "kernel" : "raw") : "none"); listen_mode = new_mode; |