summaryrefslogtreecommitdiff
path: root/net-analyzer/ettercap/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
commit6abbf81ef2f298e3221ff5e67a1f3c5f23958212 (patch)
tree25413d1cb3a0cbfe36029db32398c0f333609215 /net-analyzer/ettercap/files
parent9c417bacd51da6d8b57fa9f37425161d30d4b95b (diff)
gentoo resync : 14.12.2020
Diffstat (limited to 'net-analyzer/ettercap/files')
-rw-r--r--net-analyzer/ettercap/files/ettercap-0.8.3-fno-common.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/net-analyzer/ettercap/files/ettercap-0.8.3-fno-common.patch b/net-analyzer/ettercap/files/ettercap-0.8.3-fno-common.patch
deleted file mode 100644
index eddca836905f..000000000000
--- a/net-analyzer/ettercap/files/ettercap-0.8.3-fno-common.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/include/ec_threads.h
-+++ b/include/ec_threads.h
-@@ -12,7 +12,7 @@
- };
-
- /* a value to be used to return errors in fuctcions using pthread_t values */
--pthread_t EC_PTHREAD_NULL;
-+extern pthread_t EC_PTHREAD_NULL;
- #define EC_PTHREAD_SELF EC_PTHREAD_NULL
- #define PTHREAD_ID(id) (*(unsigned long*)&(id))
-
---- a/src/ec_threads.c
-+++ b/src/ec_threads.c
-@@ -46,6 +46,8 @@
- #define INIT_LOCK do{ DEBUG_MSG("thread_init_lock"); pthread_mutex_lock(&init_mtx); } while(0)
- #define INIT_UNLOCK do{ DEBUG_MSG("thread_init_unlock"); pthread_mutex_unlock(&init_mtx); } while(0)
-
-+pthread_t EC_PTHREAD_NULL;
-+
- /* protos... */
-
- pthread_t ec_thread_detached(char *name, char *desc, void *(*function)(void *), void *args, int detached);