aboutsummaryrefslogtreecommitdiffstats
path: root/main/cvs/cvs-1.12.12-hash-nameclash.patch
diff options
context:
space:
mode:
authorSimon Frankenberger <simon@fraho.eu>2020-04-02 16:43:04 +0200
committerLeo <thinkabit.ukim@gmail.com>2020-04-04 17:35:47 +0000
commitf068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4 (patch)
tree09cbd7763c13896c2cb0d68259946c75346c5b08 /main/cvs/cvs-1.12.12-hash-nameclash.patch
parenteeea38c8e334545967285a375bfd9a1fe3d0ab2b (diff)
downloadaports-f068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4.tar.bz2
aports-f068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4.tar.xz
main/cvs: upgrade to 1.12.13
Diffstat (limited to 'main/cvs/cvs-1.12.12-hash-nameclash.patch')
-rw-r--r--main/cvs/cvs-1.12.12-hash-nameclash.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/main/cvs/cvs-1.12.12-hash-nameclash.patch b/main/cvs/cvs-1.12.12-hash-nameclash.patch
deleted file mode 100644
index 95fd61e0a5..0000000000
--- a/main/cvs/cvs-1.12.12-hash-nameclash.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/src/hash.h?r1=1.14.6.2&r2=1.14.6.3&pathrev=cvs1-11-x-branch
-fixed in cvs-1.11.23, cvs-HEAD after cvs-1.12.13a
-
---- a/src/hash.h.orig 2005-02-01 22:56:48 +0100
-+++ b/src/hash.h 2010-03-10 19:00:11 +0100
-@@ -27,26 +27,26 @@
- };
- typedef enum ntype Ntype;
-
--struct node
-+struct hashnode
- {
- Ntype type;
-- struct node *next;
-- struct node *prev;
-- struct node *hashnext;
-- struct node *hashprev;
-+ struct hashnode *next;
-+ struct hashnode *prev;
-+ struct hashnode *hashnext;
-+ struct hashnode *hashprev;
- char *key;
- void *data;
-- void (*delproc) (struct node *);
-+ void (*delproc) (struct hashnode *);
- };
--typedef struct node Node;
-+typedef struct hashnode Node;
-
--struct list
-+struct hashlist
- {
- Node *list;
- Node *hasharray[HASHSIZE];
-- struct list *next;
-+ struct hashlist *next;
- };
--typedef struct list List;
-+typedef struct hashlist List;
-
- List *getlist (void);
- Node *findnode (List * list, const char *key);