summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2015-01-13 19:06:50 +0000
committerDamien Miller <djm@cvs.openbsd.org>2015-01-13 19:06:50 +0000
commit4719952cf9f369268b52e265f0108ad14dcc6378 (patch)
treeee306eb69670282cfd5b1c06ec31c9224bcbce79
parentea504a55dc5706aae0928a8cb398251b9128a2d6 (diff)
sync changes from libopenssh; prepared by markus@
mostly debug output tweaks, a couple of error return value changes and some other minor stuff
-rw-r--r--usr.bin/ssh/krl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/krl.h b/usr.bin/ssh/krl.h
index c98cc139d9b..4e12befc3c1 100644
--- a/usr.bin/ssh/krl.h
+++ b/usr.bin/ssh/krl.h
@@ -14,7 +14,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $OpenBSD: krl.h,v 1.3 2014/12/04 01:49:59 djm Exp $ */
+/* $OpenBSD: krl.h,v 1.4 2015/01/13 19:06:49 djm Exp $ */
#ifndef _KRL_H
#define _KRL_H
@@ -57,7 +57,7 @@ int ssh_krl_revoke_key(struct ssh_krl *krl, const struct sshkey *key);
int ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
const struct sshkey **sign_keys, u_int nsign_keys);
int ssh_krl_from_blob(struct sshbuf *buf, struct ssh_krl **krlp,
- const struct sshkey **sign_ca_keys, u_int nsign_ca_keys);
+ const struct sshkey **sign_ca_keys, size_t nsign_ca_keys);
int ssh_krl_check_key(struct ssh_krl *krl, const struct sshkey *key);
int ssh_krl_file_contains_key(const char *path, const struct sshkey *key);