diff libgaim/win32/libc_interface.h @ 15100:59189ce09f10

[gaim-migrate @ 17885] Fix wingaim file receiving. It turns out that _access() on win32 is really horrible and will fail on directories when checking any other mode than F_OK. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 04 Dec 2006 01:52:05 +0000
parents 390519f29a11
children
line wrap: on
line diff
--- a/libgaim/win32/libc_interface.h	Sun Dec 03 21:49:17 2006 +0000
+++ b/libgaim/win32/libc_interface.h	Mon Dec 04 01:52:05 2006 +0000
@@ -123,7 +123,6 @@
 
 #if !GLIB_CHECK_VERSION(2,8,0)
 int wgaim_g_access(const gchar *filename, int mode);
-#undef g_access
 #define g_access( filename, mode) \
 wgaim_g_access( filename, mode )
 #endif