diff options
author | dtucker <dtucker> | 2004-12-06 11:47:41 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2004-12-06 11:47:41 +0000 |
commit | 10061e4f72b67c3146a88e2c383e3f81e3362085 (patch) | |
tree | 1264dbab6d2d874d89450714a78c785e3d80a072 /misc.h | |
parent | 9d6d459f9c2096b013cb225c9de1a3b17f3d2955 (diff) | |
download | openssh-10061e4f72b67c3146a88e2c383e3f81e3362085.tar.gz |
- dtucker@cvs.openbsd.org 2004/12/06 11:41:03
[auth-rsa.c auth2-pubkey.c authfile.c misc.c misc.h ssh.h sshd.8]
Discard over-length authorized_keys entries rather than complaining when
they don't decode. bz #884, with & ok djm@
Diffstat (limited to 'misc.h')
-rw-r--r-- | misc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.18 2004/10/29 22:53:56 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.19 2004/12/06 11:41:03 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -47,3 +47,4 @@ char *tilde_expand_filename(const char *, uid_t); char *read_passphrase(const char *, int); int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2))); +int read_keyfile_line(FILE *, const char *, char *, size_t, int *); |