diff options
author | Colin Watson <cjwatson@debian.org> | 2010-08-24 00:37:36 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2010-08-24 00:37:36 +0100 |
commit | 682321bd8f6f8c156bf1e58f7effb69dcd32510d (patch) | |
tree | 24fd689689eda5b0fbf0f89d128a88fc55d63009 /ssh-vulnkey.c | |
parent | d09ce9b9f468c89e4d3f8c4a7d4b4abda56ac385 (diff) |
staticify most functions in ssh-vulnkey.c
Diffstat (limited to 'ssh-vulnkey.c')
-rw-r--r-- | ssh-vulnkey.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh-vulnkey.c b/ssh-vulnkey.c index f32317afc..2e29ba462 100644 --- a/ssh-vulnkey.c +++ b/ssh-vulnkey.c | |||
@@ -79,7 +79,7 @@ usage(void) | |||
79 | exit(1); | 79 | exit(1); |
80 | } | 80 | } |
81 | 81 | ||
82 | void | 82 | static void |
83 | describe_key(const char *filename, u_long linenum, const char *msg, | 83 | describe_key(const char *filename, u_long linenum, const char *msg, |
84 | Key *key, const char *comment, int min_verbosity) | 84 | Key *key, const char *comment, int min_verbosity) |
85 | { | 85 | { |
@@ -97,7 +97,7 @@ describe_key(const char *filename, u_long linenum, const char *msg, | |||
97 | xfree(fp); | 97 | xfree(fp); |
98 | } | 98 | } |
99 | 99 | ||
100 | int | 100 | static int |
101 | do_key(const char *filename, u_long linenum, | 101 | do_key(const char *filename, u_long linenum, |
102 | Key *key, const char *comment) | 102 | Key *key, const char *comment) |
103 | { | 103 | { |
@@ -130,7 +130,7 @@ do_key(const char *filename, u_long linenum, | |||
130 | return ret; | 130 | return ret; |
131 | } | 131 | } |
132 | 132 | ||
133 | int | 133 | static int |
134 | do_filename(const char *filename, int quiet_open) | 134 | do_filename(const char *filename, int quiet_open) |
135 | { | 135 | { |
136 | FILE *f; | 136 | FILE *f; |
@@ -254,7 +254,7 @@ do_filename(const char *filename, int quiet_open) | |||
254 | return ret; | 254 | return ret; |
255 | } | 255 | } |
256 | 256 | ||
257 | int | 257 | static int |
258 | do_host(int quiet_open) | 258 | do_host(int quiet_open) |
259 | { | 259 | { |
260 | int i; | 260 | int i; |
@@ -271,7 +271,7 @@ do_host(int quiet_open) | |||
271 | return ret; | 271 | return ret; |
272 | } | 272 | } |
273 | 273 | ||
274 | int | 274 | static int |
275 | do_user(const char *dir) | 275 | do_user(const char *dir) |
276 | { | 276 | { |
277 | int i; | 277 | int i; |