[obvious,committed] PR33278 abidb patch

Message ID 20250814182433.GB24942@redhat.com
State New
Headers
Series [obvious,committed] PR33278 abidb patch |

Commit Message

Frank Ch. Eigler Aug. 14, 2025, 6:24 p.m. UTC
  Hi -

Committed as obvious:

Author: Frank Ch. Eigler <fche@redhat.com>
Date:   Thu Aug 14 14:07:15 2025 -0400

    PR33278: abidb: fix -Zextension mode
    
    A previous patch added an indentation typo on a fragment of
    code.  The effect was that "abidb -Zext" stopped working, though
    "abidb -Zext=cmd" did.
    
    Signed-off-by: Frank Ch. Eigler <fche@elastic.org>
  

Patch

diff --git a/tools/abidb b/tools/abidb
index a6e408dda84d..100e249206c5 100755
--- a/tools/abidb
+++ b/tools/abidb
@@ -224,7 +224,8 @@  args = None
                     cmd = "cat" # default: pass through to libarchive
                 else:
                     cmd = "=".join(extcmd[1:]) # the rest of the command, filling other ='s back in
-                    ra["."+ext] = cmd
+                ra["."+ext] = cmd
+                logging.debug(f"parsing libarchive extension {ext} with {cmd}")
 
 
         def submit_file_generator(args):