diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 18:19:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 18:19:15 +0000 |
commit | 24c052bf08365b8a242a3a44e913b7738aa37d2b (patch) | |
tree | 5a778c2f3d853db1cbb381c597d0713b7e5a5038 | |
parent | 39ce61717c1994df17b59e3060ca4235291fb698 (diff) |
spaces
-rw-r--r-- | libexec/login_token/login_token.c | 6 | ||||
-rw-r--r-- | libexec/login_token/token.h | 4 |
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 */ |