From: Masahiro Yamada Date: Thu, 19 Oct 2017 10:16:21 +0000 (+0900) Subject: tools: image: fix node name of signature node in FIT X-Git-Tag: v2017.11-rc3~27 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=16067e6b87293eeb1fc4bac3edc0fd675b94d1a8;p=u-boot tools: image: fix node name of signature node in FIT Both "conf_name" and "sig_name" point to the name of config node. The latter should be the name of the signature node. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- diff --git a/tools/image-host.c b/tools/image-host.c index 5e4d690714..c60d4adb3d 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -513,7 +513,7 @@ static int fit_config_get_data(void *fit, int conf_noffset, int noffset, int ret, len; conf_name = fit_get_name(fit, conf_noffset, NULL); - sig_name = fit_get_name(fit, conf_noffset, NULL); + sig_name = fit_get_name(fit, noffset, NULL); debug("%s: conf='%s', sig='%s'\n", __func__, conf_name, sig_name); /* Get a list of nodes we want to hash */