summaryrefslogtreecommitdiff
path: root/ssh-vulnkey.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-08-24 00:37:36 +0100
committerColin Watson <cjwatson@debian.org>2010-08-24 00:37:36 +0100
commit682321bd8f6f8c156bf1e58f7effb69dcd32510d (patch)
tree24fd689689eda5b0fbf0f89d128a88fc55d63009 /ssh-vulnkey.c
parentd09ce9b9f468c89e4d3f8c4a7d4b4abda56ac385 (diff)
staticify most functions in ssh-vulnkey.c
Diffstat (limited to 'ssh-vulnkey.c')
-rw-r--r--ssh-vulnkey.c10
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
82void 82static void
83describe_key(const char *filename, u_long linenum, const char *msg, 83describe_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
100int 100static int
101do_key(const char *filename, u_long linenum, 101do_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
133int 133static int
134do_filename(const char *filename, int quiet_open) 134do_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
257int 257static int
258do_host(int quiet_open) 258do_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
274int 274static int
275do_user(const char *dir) 275do_user(const char *dir)
276{ 276{
277 int i; 277 int i;