summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-17 12:21:15 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-17 12:21:15 -0800
commit1f7b4edf09faa5ca8088745c0ad94a01c63043cd (patch)
tree38a9c2308ed860b27c749a9f39f49587aa47ab4f
parente38d1d27a1867b79eb86309f9d757133216cb32c (diff)
unifdef ISC
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/fc/fsio.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fc/fsio.h b/src/fc/fsio.h
index 9d0255a..481d3cd 100644
--- a/src/fc/fsio.h
+++ b/src/fc/fsio.h
@@ -170,11 +170,7 @@ extern XtransConnInfo _fs_connect(char *servername, int *ret);
#define ECHECK(err) (WSAGetLastError() == err)
#define ESET(val) WSASetLastError(val)
#else
-#ifdef ISC
-#define ECHECK(err) ((errno == err) || ETEST())
-#else
#define ECHECK(err) (errno == err)
-#endif
#define ESET(val) errno = val
#endif