Message ID | 20170411121503.26181-2-yauheni.kaliuta@redhat.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
diff --git a/libkmod/libkmod-module.c b/libkmod/libkmod-module.c index 57da0a2d1147..34c7f76e4db5 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;
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 <yauheni.kaliuta@redhat.com> --- libkmod/libkmod-module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)