summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-11-05 20:38:03 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-11-05 20:38:03 +1100
commitce327b62ac28cb6a605fd827a97d978ea31e2860 (patch)
tree4238303b22083a2e00cef74ab894efb852e23685 /misc.h
parent5d78de628376f55fd2fc5acad14733cf90867425 (diff)
- djm@cvs.openbsd.org 2004/10/29 22:53:56
[clientloop.c misc.h readpass.c ssh-agent.c] factor out common permission-asking code to separate function; ok markus@
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index ec47a611d..0290a2d64 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.18 2004/10/29 22:53:56 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -46,3 +46,4 @@ char *tilde_expand_filename(const char *, uid_t);
46#define RP_USE_ASKPASS 0x0008 46#define RP_USE_ASKPASS 0x0008
47 47
48char *read_passphrase(const char *, int); 48char *read_passphrase(const char *, int);
49int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));