aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-09-16 07:19:54 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-09-16 07:19:54 +0000
commit3c666ce57af3d0ed85b6f7e34b997f81e901bb86 (patch)
treea7e731ac0bf46d5e1a0300417c047f6c7af88a49 /tests
parenta1287ec64fa6a79aa42c151e4379aaab91076e99 (diff)
prevent warnings on re-defining MIN
Diffstat (limited to 'tests')
-rw-r--r--tests/server/tftpd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c
index 645a9c347..50c8e723c 100644
--- a/tests/server/tftpd.c
+++ b/tests/server/tftpd.c
@@ -193,6 +193,7 @@ static int readit(struct testcase *test, struct tftphdr **dpp,
return b->counter;
}
+#undef MIN /* some systems have this defined already, some don't */
#define MIN(x,y) ((x)<(y)?(x):(y));
/*