diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-01-26 00:02:13 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-01-26 00:18:42 +0100 |
commit | 99aa8035554ddb976348d2a9253ab3653019728d (patch) | |
tree | 195dc658a883d04305334be9658ba7b9eba55e94 /authfile.h | |
parent | upstream: add a comment describing the ranges of channel IDs that (diff) | |
download | openssh-99aa8035554ddb976348d2a9253ab3653019728d.tar.xz openssh-99aa8035554ddb976348d2a9253ab3653019728d.zip |
upstream: factor out reading/writing sshbufs to dedicated
functions; feedback and ok markus@
OpenBSD-Commit-ID: dc09e5f1950b7acc91b8fdf8015347782d2ecd3d
Diffstat (limited to 'authfile.h')
-rw-r--r-- | authfile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/authfile.h b/authfile.h index a2840cf80..1db067a81 100644 --- a/authfile.h +++ b/authfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.h,v 1.24 2020/01/02 22:38:33 djm Exp $ */ +/* $OpenBSD: authfile.h,v 1.25 2020/01/25 23:02:13 djm Exp $ */ /* * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved. @@ -35,7 +35,6 @@ struct sshkey; int sshkey_save_private(struct sshkey *, const char *, const char *, const char *, int, const char *, int); -int sshkey_load_file(int, struct sshbuf *); int sshkey_load_cert(const char *, struct sshkey **); int sshkey_load_public(const char *, struct sshkey **, char **); int sshkey_load_private(const char *, const char *, struct sshkey **, char **); |