X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/d3221cca2d803f842bd8cef2fc3c542d17b1be39..575a5eced126099bed926a05ff174b7a8c9f1612:/sshlogin.c diff --git a/sshlogin.c b/sshlogin.c index 9b5ce1fd..cc35d602 100644 --- a/sshlogin.c +++ b/sshlogin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshlogin.c,v 1.18 2006/07/09 15:15:11 stevesk Exp $ */ +/* $OpenBSD: sshlogin.c,v 1.26 2007/09/11 15:47:17 gilles Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -41,7 +41,19 @@ #include "includes.h" +#include +#include +#include + +#include + +#include #include +#include +#include +#include +#include +#include #include "loginrec.h" #include "log.h" @@ -86,8 +98,7 @@ store_lastlog_message(const char *user, uid_t uid) if (last_login_time != 0) { time_string = ctime(&last_login_time); - if (strchr(time_string, '\n')) - *strchr(time_string, '\n') = '\0'; + time_string[strcspn(time_string, "\n")] = '\0'; if (strcmp(hostname, "") == 0) snprintf(buf, sizeof(buf), "Last login: %s\r\n", time_string);