summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libexec/login_token/login_token.c6
-rw-r--r--libexec/login_token/token.h4
2 files changed, 4 insertions, 6 deletions
diff --git a/libexec/login_token/login_token.c b/libexec/login_token/login_token.c
index 460887620a0..29e091e2f19 100644
--- a/libexec/login_token/login_token.c
+++ b/libexec/login_token/login_token.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_token.c,v 1.6 2002/06/02 01:27:16 deraadt Exp $ */
+/* $OpenBSD: login_token.c,v 1.7 2002/09/06 18:19:14 deraadt Exp $ */
/*-
* Copyright (c) 1995, 1996 Berkeley Software Design, Inc. All rights reserved.
@@ -53,9 +53,7 @@
#include "token.h"
int
-main(argc, argv)
- int argc;
- char **argv;
+main(int argc, char *argv[])
{
FILE *back = NULL;
char *class = 0;
diff --git a/libexec/login_token/token.h b/libexec/login_token/token.h
index 266cdcd8753..ae17e00ae43 100644
--- a/libexec/login_token/token.h
+++ b/libexec/login_token/token.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: token.h,v 1.3 2002/07/16 12:38:40 jufi Exp $ */
+/* $OpenBSD: token.h,v 1.4 2002/09/06 18:19:14 deraadt Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@@ -61,7 +61,7 @@ struct token_types {
char map[6]; /* how A-F map to decimal */
int options; /* various available options */
u_int modes; /* available modes */
- u_int defmode; /* default mode (if none specified) */
+ u_int defmode; /* default mode (if none specified) */
};
struct token_types *tt; /* what type we are running as now */