]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
pki: Fix signature of help() to match that of a callback in command_t
authorTobias Brunner <tobias@strongswan.org>
Fri, 21 Feb 2025 16:18:35 +0000 (17:18 +0100)
committerTobias Brunner <tobias@strongswan.org>
Wed, 19 Mar 2025 09:22:37 +0000 (10:22 +0100)
src/pki/command.c

index accec5fe51b59c7fa088596ece5899ee586d0a75..6e6bf041e1819b296ceb451ce5818c4a943edfb7 100644 (file)
@@ -265,7 +265,7 @@ int command_usage(char *error)
 /**
  * Show usage information
  */
-static int help(int c, char *v[])
+static int help()
 {
        return command_usage(NULL);
 }