From 157dab258e30c87844bdbcf164117f5238ea89d8 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sun, 22 Jul 2012 02:23:30 +0200 Subject: Now, really fix grep on Windows --- src/common/outbound.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/common/outbound.c') diff --git a/src/common/outbound.c b/src/common/outbound.c index 5396ce57..e083eff2 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -2386,7 +2386,11 @@ cmd_lastlog (struct session *sess, char *tbuf, char *word[], char *word_eol[]) if (*word_eol[2]) { if (!strcmp (word[2], "-r")) +#ifdef WIN32 + lastlog (sess, word_eol[3], FALSE); +#else lastlog (sess, word_eol[3], TRUE); +#endif else lastlog (sess, word_eol[2], FALSE); return TRUE; -- cgit 1.4.1