summaryrefslogtreecommitdiff
path: root/authfile.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-08-24 00:01:05 +0100
committerColin Watson <cjwatson@debian.org>2010-08-24 00:01:05 +0100
commit52745c788ebc20e39c35a735a6355f77476a6644 (patch)
tree21cd35c92df0b863e40a053b2c454855c354aa9b /authfile.h
parent78799892cb1858927be02be9737c594052e3f910 (diff)
unconstify key argument to blacklisted_key_in_file and blacklisted_key
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/authfile.h b/authfile.h
index 094b855bd..e66d1f573 100644
--- a/authfile.h
+++ b/authfile.h
@@ -26,6 +26,6 @@ Key *key_load_private_pem(int, int, const char *, char **);
26int key_perm_ok(int, const char *); 26int key_perm_ok(int, const char *);
27int key_in_file(Key *, const char *, int); 27int key_in_file(Key *, const char *, int);
28 28
29int blacklisted_key(const Key *key, char **fp); 29int blacklisted_key(Key *key, char **fp);
30 30
31#endif 31#endif