summaryrefslogtreecommitdiff
path: root/src/analyze/analyze-security.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-02-21 14:51:56 +0100
committerLennart Poettering <lennart@poettering.net>2022-02-21 17:22:23 +0100
commitef38bedbf9c713490912e07e279b6f6a524e54f3 (patch)
tree37f845bf637404d0b00da498c0c0b3bc0124e581 /src/analyze/analyze-security.h
parente82116e56bc3f3311f0ab9702a906393cb87e175 (diff)
downloadsystemd-ef38bedbf9c713490912e07e279b6f6a524e54f3.tar.gz
analyze: systematically name verb entry point functions verb_xyz()
Some of the functions so far were named do_xyz(), others dump_xyz() and even others test_xyz(). let's instead name them exactly like the verb exposed in the command line, just prefixed with verb_
Diffstat (limited to 'src/analyze/analyze-security.h')
-rw-r--r--src/analyze/analyze-security.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze-security.h b/src/analyze/analyze-security.h
index 84436c7dad..82f4c7fdee 100644
--- a/src/analyze/analyze-security.h
+++ b/src/analyze/analyze-security.h
@@ -7,4 +7,4 @@ typedef enum AnalyzeSecurityFlags {
ANALYZE_SECURITY_ONLY_LONG_RUNNING = 1 << 2,
} AnalyzeSecurityFlags;
-int do_security(int argc, char *argv[], void *userdata);
+int verb_security(int argc, char *argv[], void *userdata);