summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-19 15:25:29 +1100
committerDamien Miller <djm@mindrot.org>2002-02-19 15:25:29 +1100
commita93c6d87ef75a23cfbdb30f0a5821ae54300895f (patch)
tree464771631d2a637292c9dcbea656e98c98a99f91
parentb0462114834f6673f5bb767cbdafe48dafa8a1e4 (diff)
- millert@cvs.openbsd.org 2002/02/17 19:42:32
[auth.h] Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
-rw-r--r--ChangeLog6
-rw-r--r--auth.h7
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index bc7bd0abe..35a73574e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,10 @@
30 some minor hand editing to make comments line up correctly. Another 30 some minor hand editing to make comments line up correctly. Another
31 pass is forthcoming that handles the cases that could not be done 31 pass is forthcoming that handles the cases that could not be done
32 automatically. 32 automatically.
33 - millert@cvs.openbsd.org 2002/02/17 19:42:32
34 [auth.h]
35 Manual cleanup of remaining userland __P use (excluding packages
36 maintained outside the tree)
33 37
3420020218 3820020218
35 - (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess 39 - (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess
@@ -7627,4 +7631,4 @@
7627 - Wrote replacements for strlcpy and mkdtemp 7631 - Wrote replacements for strlcpy and mkdtemp
7628 - Released 1.0pre1 7632 - Released 1.0pre1
7629 7633
7630$Id: ChangeLog,v 1.1861 2002/02/19 04:24:43 djm Exp $ 7634$Id: ChangeLog,v 1.1862 2002/02/19 04:25:29 djm Exp $
diff --git a/auth.h b/auth.h
index 6db5b6e54..841928093 100644
--- a/auth.h
+++ b/auth.h
@@ -21,7 +21,7 @@
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 * 23 *
24 * $OpenBSD: auth.h,v 1.27 2002/02/16 21:27:53 millert Exp $ 24 * $OpenBSD: auth.h,v 1.28 2002/02/17 19:42:32 millert Exp $
25 */ 25 */
26#ifndef AUTH_H 26#ifndef AUTH_H
27#define AUTH_H 27#define AUTH_H
@@ -80,9 +80,8 @@ struct KbdintDevice
80{ 80{
81 const char *name; 81 const char *name;
82 void* (*init_ctx)(Authctxt*); 82 void* (*init_ctx)(Authctxt*);
83 int (*query) __P((void *ctx, char **name, char **infotxt, 83 int (*query)(void *ctx, char **name, char **infotxt,
84 u_int *numprompts, char ***prompts, 84 u_int *numprompts, char ***prompts, u_int **echo_on);
85 u_int **echo_on));
86 int (*respond)(void *ctx, u_int numresp, char **responses); 85 int (*respond)(void *ctx, u_int numresp, char **responses);
87 void (*free_ctx)(void *ctx); 86 void (*free_ctx)(void *ctx);
88}; 87};