Commit 2c29eff33 for clamav.net

commit 2c29eff332809eda1ed76af2b849f8be632c212f
Author: ipnerds <ipnerds@users.noreply.github.com>
Date:   Mon Apr 13 09:56:14 2026 -0600

    Update sigtool.c to fix incorrect filename reference (#1702)

    sigtool --testsigs takes two file references, while the file open code references the correct files, the error in the case of one file not being available was incorrect.

diff --git a/sigtool/sigtool.c b/sigtool/sigtool.c
index 4296a28b8..f39c89674 100644
--- a/sigtool/sigtool.c
+++ b/sigtool/sigtool.c
@@ -3734,7 +3734,7 @@ static int testsigs(const struct optstruct *opts)

     fd = open(opts->filename[0], O_RDONLY | O_BINARY);
     if (fd == -1) {
-        mprintf(LOGG_ERROR, "testsigs: Can't open file %s\n", optget(opts, "test-sigs")->strarg);
+        mprintf(LOGG_ERROR, "testsigs: Can't open file %s\n", opts->filename[0]);
         fclose(sigs);
         return -1;
     }