summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-07-08 07:52:34 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-08 07:52:36 +0200
commitdeef1e80f3584af6392ab266a77bf580bfcca773 (patch)
treef8417fd957b76e5984a9f18b339b2d509678b739 /net
parent37f47a2a8c2dba420a849625b2926dacdc23cf49 (diff)
downloadbarebox-deef1e80f3584af6392ab266a77bf580bfcca773.tar.gz
barebox-deef1e80f3584af6392ab266a77bf580bfcca773.tar.xz
Do not use macros in command help
The help texts are parsed by sphinx which cannot handle macros, so replace them with their values. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'net')
-rw-r--r--net/dhcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dhcp.c b/net/dhcp.c
index 070e3bc554..9551d60ad4 100644
--- a/net/dhcp.c
+++ b/net/dhcp.c
@@ -796,7 +796,7 @@ BAREBOX_CMD_HELP_OPT ("-v ID\t", "DHCP Vendor ID (code 60) submitted in DHCP req
BAREBOX_CMD_HELP_OPT ("-c ID\t", "DHCP Client ID (code 61) submitted in DHCP requests")
BAREBOX_CMD_HELP_OPT ("-u UUID\t", "DHCP Client UUID (code 97) submitted in DHCP requests")
BAREBOX_CMD_HELP_OPT ("-U CLASS", "DHCP User class (code 77) submitted in DHCP requests")
-BAREBOX_CMD_HELP_OPT ("-r RETRY", "retry limit (default "__stringify(DHCP_DEFAULT_RETRY)")");
+BAREBOX_CMD_HELP_OPT ("-r RETRY", "retry limit (default 20)");
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(dhcp)