diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-28 01:14:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-28 01:14:38 +0000 |
commit | 0714f10d40c8fbddf532c2a0eab5179643523c8b (patch) | |
tree | 77a08826a7458398f5cd39f6490f76f79e3ab1f7 /libexec/login_lchpass/login_lchpass.c | |
parent | 469eb728a6ab385820d4f0d04c59a89ec812e770 (diff) |
minor indent cleanup
Diffstat (limited to 'libexec/login_lchpass/login_lchpass.c')
-rw-r--r-- | libexec/login_lchpass/login_lchpass.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/login_lchpass/login_lchpass.c b/libexec/login_lchpass/login_lchpass.c index a823a703bd1..6c1c6882ea2 100644 --- a/libexec/login_lchpass/login_lchpass.c +++ b/libexec/login_lchpass/login_lchpass.c @@ -1,4 +1,4 @@ -/* $OpenBSD: login_lchpass.c,v 1.8 2002/06/02 01:27:15 deraadt Exp $ */ +/* $OpenBSD: login_lchpass.c,v 1.9 2002/06/28 01:14:37 deraadt Exp $ */ /*- * Copyright (c) 1995,1996 Berkeley Software Design, Inc. All rights reserved. @@ -65,10 +65,10 @@ main(argc, argv) struct iovec iov[2]; struct passwd *pwd; char localhost[MAXHOSTNAMELEN]; - char *username = NULL; + char *username = NULL; char *salt; char *p; - int c; + int c; struct rlimit rl; iov[0].iov_base = BI_SILENT; @@ -87,7 +87,7 @@ main(argc, argv) if (gethostname(localhost, sizeof(localhost)) < 0) syslog(LOG_ERR, "couldn't get local hostname: %m"); - while ((c = getopt(argc, argv, "v:s:")) != -1) + while ((c = getopt(argc, argv, "v:s:")) != -1) switch (c) { case 'v': break; |