summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar snowdrop2004-11-05 11:58:01 +0000
committerGravatar snowdrop2004-11-05 11:58:01 +0000
commit138dbb259caa731d7aecc34d9360accd1fb7ab9d (patch)
tree4b5a184bc30251e540790cc4b4a0194d7f19865d
parentc41114c1cf6172ca40a7a040121a7a4819da3969 (diff)
downloadcsoap-138dbb259caa731d7aecc34d9360accd1fb7ab9d.tar.gz
csoap-138dbb259caa731d7aecc34d9360accd1fb7ab9d.tar.bz2
changed #ifndef MINGW to #ifndef __FUNCTION__
-rw-r--r--nanohttp/nanohttp-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nanohttp/nanohttp-common.h b/nanohttp/nanohttp-common.h
index 60cfbeb..88f8f67 100644
--- a/nanohttp/nanohttp-common.h
+++ b/nanohttp/nanohttp-common.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: nanohttp-common.h,v 1.17 2004/11/02 23:09:26 snowdrop Exp $
+ * $Id: nanohttp-common.h,v 1.18 2004/11/05 11:58:01 snowdrop Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -480,7 +480,7 @@ void log_set_file(const char *filename);
char *log_get_file();
#ifdef WIN32
- #ifndef __MINGW32__
+ #ifndef __FUNCTION__
char *VisualC_funcname(const char* file, int line); /* not thread safe!*/
#define __FUNCTION__ VisualC_funcname(__FILE__, __LINE__)
#endif