ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/porting.C
(Generate patch)

Comparing deliantra/server/common/porting.C (file contents):
Revision 1.12 by root, Mon Jan 15 01:25:41 2007 UTC vs.
Revision 1.16 by root, Thu May 17 21:32:08 2007 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * CrossFire, A Multiplayer game
3 3 *
4 Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
6 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
7 7 *
8 This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version. 11 * (at your option) any later version.
12 12 *
13 This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details. 16 * GNU General Public License for more details.
17 17 *
18 You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 21 *
22 The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail at <crossfire@schmorp.de>
23*/ 23 */
24 24
25/* This file contains various functions that are not really unique for 25/* This file contains various functions that are not really unique for
26 * crossfire, but rather provides what should be standard functions 26 * crossfire, but rather provides what should be standard functions
27 * for systems that do not have them. In this way, most of the 27 * for systems that do not have them. In this way, most of the
28 * nasty system dependent stuff is contained here, with the program 28 * nasty system dependent stuff is contained here, with the program
47 47
48#include <unistd.h> 48#include <unistd.h>
49 49
50/* Has to be after above includes so we don't redefine some values */ 50/* Has to be after above includes so we don't redefine some values */
51#include "global.h" 51#include "global.h"
52
53static unsigned int curtmp = 0;
54 52
55/* This function removes everything in the directory. */ 53/* This function removes everything in the directory. */
56void 54void
57remove_directory (const char *path) 55remove_directory (const char *path)
58{ 56{
180 char buf[MAX_BUF], *cp = buf; 178 char buf[MAX_BUF], *cp = buf;
181 struct stat statbuf; 179 struct stat statbuf;
182 180
183 if (!filename || !*filename) 181 if (!filename || !*filename)
184 return; 182 return;
183
185 strcpy (buf, filename); 184 assign (buf, filename);
186 185
187 while ((cp = strchr (cp + 1, (int) '/'))) 186 while ((cp = strchr (cp + 1, (int) '/')))
188 { 187 {
189 *cp = '\0'; 188 *cp = '\0';
190 if (stat (buf, &statbuf) || !S_ISDIR (statbuf.st_mode)) 189 if (stat (buf, &statbuf) || !S_ISDIR (statbuf.st_mode))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines