Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/include Pull up revisions 1.16-1.18 (via patch, request...



details:   https://anonhg.NetBSD.org/src/rev/22b81a02c6fe
branches:  netbsd-1-5
changeset: 492903:22b81a02c6fe
user:      he <he%NetBSD.org@localhost>
date:      Tue Feb 26 22:10:42 2002 +0000

description:
Pull up revisions 1.16-1.18 (via patch, requested by jonathan):
  Add support for local MD5-encrypted passwords.

diffstat:

 include/util.h |  59 ++++++++++++++++++++++++++++-----------------------------
 1 files changed, 29 insertions(+), 30 deletions(-)

diffs (77 lines):

diff -r 01fa256258d1 -r 22b81a02c6fe include/util.h
--- a/include/util.h    Tue Feb 26 22:09:45 2002 +0000
+++ b/include/util.h    Tue Feb 26 22:10:42 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.h,v 1.15 2000/01/12 05:02:11 mjl Exp $    */
+/*     $NetBSD: util.h,v 1.15.4.1 2002/02/26 22:10:42 he Exp $ */
 
 /*-
  * Copyright (c) 1995
@@ -54,39 +54,38 @@
 #define        FPARSELN_UNESCALL       0x0f
 
 __BEGIN_DECLS
-struct utmp;
+struct iovec;
 struct passwd;
 struct termios;
-struct termios;
+struct utmp;
 struct winsize;
-struct iovec;
 
-void   login __P((const struct utmp *));
-int    login_tty __P((int));
-int    logout __P((const char *));
-void   logwtmp __P((const char *, const char *, const char *));
-int    pw_lock __P((int));
-int    pw_mkdb __P((void));
-int    pw_abort __P((void));
-void   pw_init __P((void));
-void   pw_edit __P((int, const char *));
-void   pw_prompt __P((void));
-void   pw_copy __P((int, int, struct passwd *, struct passwd *));
-void   pw_error __P((const char *, int, int));
-int    openpty __P((int *, int *, char *, struct termios *,
-                    struct winsize *));
-char   *fparseln __P((FILE *, size_t *, size_t *, const char[3], int));
-pid_t  forkpty __P((int *, char *, struct termios *, struct winsize *));
-int    getmaxpartitions __P((void));
-int    getrawpartition __P((void));
-int    opendisk __P((const char *, int, char *, size_t, int));
-void   pidfile __P((const char *));
-int    pidlock __P((const char *, int, pid_t *, const char *));
-int    ttylock __P((const char *, int, pid_t *));
-int    ttyunlock __P((const char *));
-int    ttyaction __P((const char *, const char *, const char *));
-char   *ttymsg __P((struct iovec *, int, const char *, int));
-int    secure_path __P((char *));
+pid_t  forkpty(int *, char *, struct termios *, struct winsize *);
+char   *fparseln(FILE *, size_t *, size_t *, const char[3], int);
+int    getmaxpartitions(void);
+int    getrawpartition(void);
+void   login(const struct utmp *);
+int    login_tty(int);
+int    logout(const char *);
+void   logwtmp(const char *, const char *, const char *);
+int    opendisk(const char *, int, char *, size_t, int);
+int    openpty(int *, int *, char *, struct termios *, struct winsize *);
+void   pidfile(const char *);
+int    pidlock(const char *, int, pid_t *, const char *);
+int    pw_abort(void);
+void   pw_copy(int, int, struct passwd *, struct passwd *);
+void   pw_edit(int, const char *);
+void   pw_error(const char *, int, int);
+void   pw_getconf(char *, size_t, const char *, const char *);
+void   pw_init(void);
+int    pw_lock(int);
+int    pw_mkdb(void);
+void   pw_prompt(void);
+int    secure_path(char *);
+int    ttyaction(const char *, const char *, const char *);
+int    ttylock(const char *, int, pid_t *);
+char   *ttymsg(struct iovec *, int, const char *, int);
+int    ttyunlock(const char *);
 __END_DECLS
 
 #endif /* !_UTIL_H_ */



Home | Main Index | Thread Index | Old Index