summaryrefslogtreecommitdiffstats
path: root/authfile.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-09-03 08:30:47 +0000
committerDamien Miller <djm@mindrot.org>2019-09-03 18:39:31 +1000
commitdd8002fbe63d903ffea5be7b7f5fc2714acab4a0 (patch)
treeac6cf10455cbf734c7d257288ab265e6113f2e42 /authfile.h
parentc72d78ccbe642e08591a626e5de18381489716e0 (diff)
upstream: move advance_past_options to authfile.c and make it
public; ok markus@ OpenBSD-Commit-ID: edda2fbba2c5b1f48e60f857a2010479e80c5f3c
Diffstat (limited to 'authfile.h')
-rw-r--r--authfile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfile.h b/authfile.h
index 54df169b..9c8a95a0 100644
--- a/authfile.h
+++ b/authfile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.h,v 1.22 2019/08/05 11:50:33 dtucker Exp $ */
+/* $OpenBSD: authfile.h,v 1.23 2019/09/03 08:30:47 djm Exp $ */
/*
* Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
@@ -48,5 +48,6 @@ int sshkey_load_private_type_fd(int fd, int type, const char *passphrase,
int sshkey_perm_ok(int, const char *);
int sshkey_in_file(struct sshkey *, const char *, int, int);
int sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file);
+int sshkey_advance_past_options(char **cpp);
#endif