diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-11-01 07:35:46 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-11-01 07:35:46 +0000 |
commit | c993547647ade192de588d835170899ea69750fa (patch) | |
tree | 1066049488d0de8086aaf3e233ead12bf19d5d4e /games/uox3/files/patch-af | |
parent | - Update to 0.12.17 (diff) |
2011-11-01 games/phpua-ut2003: depends on phpua-engine
2011-11-01 games/phpua-engine: apache13 is deprecated, migrate to 2.2.x+ now
2011-11-01 games/phpua-hl: depends on phpua-engine
2011-11-01 games/phpua-ut: depends on phpua-engine
2011-11-01 games/phpua-cod: depends on phpua-engine
2011-11-01 games/uox3: No more public distfiles
2011-11-01 games/phpua-q3: depends on phpua-engine
2011-11-01 games/phpua-bf: depends on phpua-engine
2011-10-30 graphics/kallery: does not build; last release 20010511
2011-10-28 graphics/gtksee: depends on unfetchable port archivers/bzip; last release 2004
2011-11-01 mail/mailscanner-mrtg: apache13 is deprecated, migrate to 2.2.x+ now
2011-10-31 net-p2p/qbittorrent-28-nox11: Please migrate to net-p2p/qbittorrent-29
2011-10-31 net-p2p/qbittorrent-28: Please migrate to net-p2p/qbittorrent-29
2011-10-31 net-p2p/dctc-gui-qt No more public distfiles
2011-10-31 net-p2p/dctc-gui No more public distfiles
2011-09-01 net-p2p/dctc: No more public distfiles
2011-11-01 www/slash: apache13 is deprecated, migrate to 2.2.x+ now
2011-11-01 databases/maatkit: Upstream support dropped. Please consider using databases/percona-toolkit
2011-11-01 databases/mysqlman: apache13 is deprecated, migrate to 2.2.x+ now
2011-11-01 databases/mysql-editor: apache13 is deprecated, migrate to 2.2.x+ now
2011-09-30 databases/gnats: Security issues
Notes
Notes:
svn path=/head/; revision=284829
Diffstat (limited to 'games/uox3/files/patch-af')
-rw-r--r-- | games/uox3/files/patch-af | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/games/uox3/files/patch-af b/games/uox3/files/patch-af deleted file mode 100644 index 2b08b09c2336..000000000000 --- a/games/uox3/files/patch-af +++ /dev/null @@ -1,59 +0,0 @@ ---- work/dev/archive.cpp.orig Tue Feb 9 00:14:28 1999 -+++ work/dev/archive.cpp Sun Feb 27 10:50:19 2000 -@@ -44,6 +44,11 @@ - // - #include "uox3.h" - -+void _itoa(char *a, int b, int c) -+{ -+ sprintf(a, "%d", b); -+} -+ - void fileArchive(char *pFile2Archive, char *pArchiveDir) - { - char ext[255] = ""; -@@ -98,7 +103,7 @@ - ptime = localtime(&mytime); - - // Create the 4 digit year date -- _itoa((ptime->tm_year + 1900), intdate, 10); -+ _itoa(intdate, (ptime->tm_year + 1900), 10); - strcpy(archiveid, intdate); - - // Create the 3 digit day of the year date -@@ -107,7 +112,7 @@ - strcpy(temp, "0"); - if (ptime->tm_yday < 100) - strcpy(temp, "00"); -- _itoa(ptime->tm_yday, intdate, 10); -+ _itoa(intdate, ptime->tm_yday, 10); - strcat(temp, intdate); - strcat(archiveid, temp); - -@@ -116,7 +121,7 @@ - strcpy(temp, ""); - if (ptime->tm_hour < 10) - strcpy(temp, "0"); -- _itoa(ptime->tm_hour, intdate, 10); -+ _itoa(intdate, ptime->tm_hour, 10); - strcat(temp, intdate); - strcat(archiveid, temp); - -@@ -124,7 +129,7 @@ - strcpy(temp, ""); - if (ptime->tm_min < 10) - strcpy(temp, "0"); -- _itoa(ptime->tm_min, intdate, 10); -+ _itoa(intdate, ptime->tm_min, 10); - strcat(temp, intdate); - strcat(archiveid, temp); - -@@ -132,7 +137,7 @@ - strcpy(temp, ""); - if (ptime->tm_sec < 10) - strcpy(temp, "0"); -- _itoa(ptime->tm_sec, intdate, 10); -+ _itoa(intdate, ptime->tm_sec, 10); - strcat(temp, intdate); - strcat(archiveid, temp); - |