Skip to content
Snippets Groups Projects
Commit f13261b9 authored by deuce's avatar deuce
Browse files

Fix the only use of the __unix macro anywhere in all of the code.

Apparently, it IS defined on Linux and FreeBSD, but is not currently
defined on OpenBSD (but I bet it used to be!).  This should fix the strange
zip behaviour reported by khelair.
parent 3207c2ba
No related branches found
No related tags found
No related merge requests found
......@@ -761,7 +761,7 @@ enum { /* readmail and delmailidx which types */
#define EX_STDIO (EX_STDIN|EX_STDOUT)
#define EX_CONIO (1<<31) /* Intercept Windows console I/O (doorway) */
#if defined(__unix)
#if defined(__unix__)
#define EX_WILDCARD EX_SH /* Expand wildcards using 'sh' on Unix */
#else
#define EX_WILDCARD 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment