diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-11-04 23:05:48 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-11-05 17:42:55 +0000 |
commit | 452fb2d0a2fc9d090e070fcf47b3c58ff1f0deb2 (patch) | |
tree | ab17124a556a4c58eb371335b0ff7f920c91f72c /src/hci/commands/ifmgmt_cmd.c | |
parent | 506152d46739be0afda75dab480b77adf99e9b14 (diff) | |
download | ipxe-452fb2d0a2fc9d090e070fcf47b3c58ff1f0deb2.tar.gz |
[cmdline] Make "dhcp" command a synonym for "ifconf"
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/commands/ifmgmt_cmd.c')
-rw-r--r-- | src/hci/commands/ifmgmt_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/commands/ifmgmt_cmd.c b/src/hci/commands/ifmgmt_cmd.c index 2fd56ce58..f3d00ca38 100644 --- a/src/hci/commands/ifmgmt_cmd.c +++ b/src/hci/commands/ifmgmt_cmd.c @@ -238,7 +238,7 @@ static struct ifcommon_command_descriptor ifconf_cmd = * @v argv Argument list * @ret rc Return status code */ -static int ifconf_exec ( int argc, char **argv ) { +int ifconf_exec ( int argc, char **argv ) { return ifcommon_exec ( argc, argv, &ifconf_cmd ); } |