From 6ca5505eef50c2f220c966ce1a073089d7885000 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 25 May 1997 14:38:49 +0000 Subject: [PATCH] (SYST): Check for `__unix'. This is (apparently) a standard with many representations. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1773 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/ftp/ftpd/ftpcmd.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appl/ftp/ftpd/ftpcmd.y b/appl/ftp/ftpd/ftpcmd.y index e99eb8176..d0c0d5148 100644 --- a/appl/ftp/ftpd/ftpcmd.y +++ b/appl/ftp/ftpd/ftpcmd.y @@ -587,7 +587,7 @@ cmd } | SYST CRLF { -#if defined(unix) || defined(__unix__) || defined(_AIX) || defined(_CRAY) +#if defined(unix) || defined(__unix__) || defined(__unix) || defined(_AIX) || defined(_CRAY) reply(215, "UNIX Type: L%d", NBBY); #else reply(215, "UNKNOWN Type: L%d", NBBY);