diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | auth.h | 8 |
2 files changed, 11 insertions, 5 deletions
@@ -24,6 +24,12 @@ | |||
24 | [ssh-keygen.c] | 24 | [ssh-keygen.c] |
25 | default to rsa keyfile path for non key generation operations where | 25 | default to rsa keyfile path for non key generation operations where |
26 | keyfile not specified. fixes core dump in those cases. ok markus@ | 26 | keyfile not specified. fixes core dump in those cases. ok markus@ |
27 | - millert@cvs.openbsd.org 2002/02/16 21:27:53 | ||
28 | [auth.h] | ||
29 | Part one of userland __P removal. Done with a simple regexp with | ||
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 | ||
32 | automatically. | ||
27 | 33 | ||
28 | 20020218 | 34 | 20020218 |
29 | - (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess | 35 | - (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess |
@@ -7621,4 +7627,4 @@ | |||
7621 | - Wrote replacements for strlcpy and mkdtemp | 7627 | - Wrote replacements for strlcpy and mkdtemp |
7622 | - Released 1.0pre1 | 7628 | - Released 1.0pre1 |
7623 | 7629 | ||
7624 | $Id: ChangeLog,v 1.1860 2002/02/19 04:22:47 djm Exp $ | 7630 | $Id: ChangeLog,v 1.1861 2002/02/19 04:24:43 djm Exp $ |
@@ -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.26 2001/12/27 19:54:53 markus Exp $ | 24 | * $OpenBSD: auth.h,v 1.27 2002/02/16 21:27:53 millert Exp $ |
25 | */ | 25 | */ |
26 | #ifndef AUTH_H | 26 | #ifndef AUTH_H |
27 | #define AUTH_H | 27 | #define AUTH_H |
@@ -79,12 +79,12 @@ struct Authctxt { | |||
79 | struct KbdintDevice | 79 | struct KbdintDevice |
80 | { | 80 | { |
81 | const char *name; | 81 | const char *name; |
82 | void* (*init_ctx) __P((Authctxt*)); | 82 | void* (*init_ctx)(Authctxt*); |
83 | int (*query) __P((void *ctx, char **name, char **infotxt, | 83 | int (*query) __P((void *ctx, char **name, char **infotxt, |
84 | u_int *numprompts, char ***prompts, | 84 | u_int *numprompts, char ***prompts, |
85 | u_int **echo_on)); | 85 | u_int **echo_on)); |
86 | int (*respond) __P((void *ctx, u_int numresp, char **responses)); | 86 | int (*respond)(void *ctx, u_int numresp, char **responses); |
87 | void (*free_ctx) __P((void *ctx)); | 87 | void (*free_ctx)(void *ctx); |
88 | }; | 88 | }; |
89 | 89 | ||
90 | int auth_rhosts(struct passwd *, const char *); | 90 | int auth_rhosts(struct passwd *, const char *); |