diff options
author | 2000-03-01 18:33:49 +0000 | |
---|---|---|
committer | 2000-03-01 18:33:49 +0000 | |
commit | f2542eafd765cacde85dd3f16c45b9fdacbad91e (patch) | |
tree | 99020183a0522485d4e4ce0da2c34c463bf4c561 | |
parent | Initialize xs->req_sense_length to 0. This is not used by many (diff) | |
download | wireguard-openbsd-f2542eafd765cacde85dd3f16c45b9fdacbad91e.tar.xz wireguard-openbsd-f2542eafd765cacde85dd3f16c45b9fdacbad91e.zip |
Wall
-rw-r--r-- | usr.bin/login/failedlogin.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/login/failedlogin.c b/usr.bin/login/failedlogin.c index b2ed640c265..e6576c1a09b 100644 --- a/usr.bin/login/failedlogin.c +++ b/usr.bin/login/failedlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: failedlogin.c,v 1.7 1999/08/17 09:13:15 millert Exp $ */ +/* $OpenBSD: failedlogin.c,v 1.8 2000/03/01 18:33:49 deraadt Exp $ */ /* * Copyright (c) 1996 Todd C. Miller <Todd.Miller@courtesan.com> @@ -28,7 +28,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: failedlogin.c,v 1.7 1999/08/17 09:13:15 millert Exp $"; +static char rcsid[] = "$OpenBSD: failedlogin.c,v 1.8 2000/03/01 18:33:49 deraadt Exp $"; #endif /* not lint */ /* @@ -119,8 +119,9 @@ check_failedlogin(uid) /* There was a bad login */ was_bad = 1; if (failedlogin.count > 1) - (void)printf("There have been %u unsuccessful login attempts to your account.\n", - failedlogin.count); + printf("There have been %ld unsuccessful login " + "attempts to your account.\n", + (long)failedlogin.count); (void)printf("Last unsuccessful login: %.*s", 24-5, (char *)ctime(&failedlogin.bl_time)); (void)printf(" on %.*s", |