diff options
author | Simon Glass <sjg@chromium.org> | 2012-02-14 19:59:20 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-06 21:09:22 +0100 |
commit | 009dde1955583e306cf904c864068f3acb0db499 (patch) | |
tree | e947cfb2a3ff47d34c9a78adc97dbd31c97d704e /common/cmd_pxe.c | |
parent | f47360a74ec05c078960bf6f8c10a7f426c7d11d (diff) |
Rename run_command2() to run_command()
This is a more sensible name, so rename it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_pxe.c')
-rw-r--r-- | common/cmd_pxe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index 7c0cb666681..3f696435821 100644 --- a/common/cmd_pxe.c +++ b/common/cmd_pxe.c @@ -537,7 +537,7 @@ static int label_localboot(struct pxe_label *label) printf("running: %s\n", dupcmd); - ret = run_command2(dupcmd, 0); + ret = run_command(dupcmd, 0); free(dupcmd); |