You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
908 B
29 lines
908 B
From 7537374e7f5802852c0c64b4cb2a9646402e3cba Mon Sep 17 00:00:00 2001 |
|
From: Petr Lautrbach <plautrba@redhat.com> |
|
Date: Tue, 16 Nov 2021 16:11:22 +0100 |
|
Subject: [PATCH] semodule: Fix lang_ext column index |
|
|
|
lang_ext is 3. column - index number 2. |
|
|
|
Signed-off-by: Petr Lautrbach <plautrba@redhat.com> |
|
Acked-by: James Carter <jwcart2@gmail.com> |
|
--- |
|
policycoreutils/semodule/semodule.c | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/policycoreutils/semodule/semodule.c b/policycoreutils/semodule/semodule.c |
|
index ddbf10455abf..57f005ce2c62 100644 |
|
--- a/policycoreutils/semodule/semodule.c |
|
+++ b/policycoreutils/semodule/semodule.c |
|
@@ -684,7 +684,7 @@ cleanup_extract: |
|
if (result != 0) goto cleanup_list; |
|
|
|
size = strlen(tmp); |
|
- if (size > column[3]) column[3] = size; |
|
+ if (size > column[2]) column[2] = size; |
|
} |
|
|
|
/* print out each module */ |
|
-- |
|
2.33.1 |
|
|
|
|