From: Yauheni Kaliuta Date: Tue, 11 Apr 2017 12:15:00 +0000 (+0300) Subject: libkmod: modinfo: fix sig_id output X-Git-Tag: v25~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30fb14f3c81ec5b0a5ef5b4b1c998a7de5420328;p=thirdparty%2Fkmod.git libkmod: modinfo: fix sig_id output For some reason the key for sig_id was set to "signature". The length was calculated against the proper string, as the result in the output it was truncated to "signat". Pass the proper key to the kmod_module_info_append() call. Signed-off-by: Yauheni Kaliuta --- diff --git a/libkmod/libkmod-module.c b/libkmod/libkmod-module.c index 57da0a2d..34c7f76e 100644 --- a/libkmod/libkmod-module.c +++ b/libkmod/libkmod-module.c @@ -2257,7 +2257,7 @@ KMOD_EXPORT int kmod_module_get_info(const struct kmod_module *mod, struct kmod_ struct kmod_list *n; char *key_hex; - n = kmod_module_info_append(list, "signature", strlen("sig_id"), + n = kmod_module_info_append(list, "sig_id", strlen("sig_id"), sig_info.id_type, strlen(sig_info.id_type)); if (n == NULL) goto list_error;