summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index ec47a611d..8bbc87f0d 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.17 2004/08/11 21:43:05 avsm Exp $ */ 1/* $OpenBSD: misc.h,v 1.21 2005/03/01 10:09:52 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -20,6 +20,7 @@ int set_nonblock(int);
20int unset_nonblock(int); 20int unset_nonblock(int);
21void set_nodelay(int); 21void set_nodelay(int);
22int a2port(const char *); 22int a2port(const char *);
23char *hpdelim(char **);
23char *cleanhostname(char *); 24char *cleanhostname(char *);
24char *colon(char *); 25char *colon(char *);
25long convtime(const char *); 26long convtime(const char *);
@@ -46,3 +47,5 @@ char *tilde_expand_filename(const char *, uid_t);
46#define RP_USE_ASKPASS 0x0008 47#define RP_USE_ASKPASS 0x0008
47 48
48char *read_passphrase(const char *, int); 49char *read_passphrase(const char *, int);
50int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
51int read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);