|
From: <cro...@li...> - 2003-08-24 16:01:38
|
Module Name: crossfire
Committed By: temitchell
Date: Sat Aug 23 16:17:20 UTC 2003
Modified Files:
crossfire/common: map.c
Log Message:
- fix this as per authors request (Nicolas Weeger).
Start of context diffs
Index: crossfire/common/map.c
diff -c crossfire/common/map.c:1.56 crossfire/common/map.c:1.57
*** crossfire/common/map.c:1.56 Sat Aug 2 09:25:23 2003
--- crossfire/common/map.c Sat Aug 23 09:17:19 2003
***************
*** 1,6 ****
/*
* static char *rcsid_map_c =
! * "$Id: map.c,v 1.56 2003/08/02 16:25:23 tchize Exp $";
*/
/*
--- 1,6 ----
/*
* static char *rcsid_map_c =
! * "$Id: map.c,v 1.57 2003/08/23 16:17:19 temitchell Exp $";
*/
/*
***************
*** 188,194 ****
else
strcpy(buf, name);
#ifdef WIN32 /* ***win32: check this sucker in windows style. */
! return(_access(name,0));
#else
/* old method (strchr(buf, '\0')) seemd very odd to me -
--- 188,194 ----
else
strcpy(buf, name);
#ifdef WIN32 /* ***win32: check this sucker in windows style. */
! return(_access(buf,0));
#else
/* old method (strchr(buf, '\0')) seemd very odd to me -
|