summaryrefslogtreecommitdiff
path: root/net-voip/captagent/files/captagent-6.3.1-r1-clang.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-voip/captagent/files/captagent-6.3.1-r1-clang.patch')
-rw-r--r--net-voip/captagent/files/captagent-6.3.1-r1-clang.patch63
1 files changed, 0 insertions, 63 deletions
diff --git a/net-voip/captagent/files/captagent-6.3.1-r1-clang.patch b/net-voip/captagent/files/captagent-6.3.1-r1-clang.patch
deleted file mode 100644
index 02940147d30f..000000000000
--- a/net-voip/captagent/files/captagent-6.3.1-r1-clang.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From a4b5cc7806861b75b03ea0d31e1413e3e293770c Mon Sep 17 00:00:00 2001
-From: Jaco Kroon <jaco@uls.co.za>
-Date: Thu, 20 Jan 2022 07:07:40 +0200
-Subject: [PATCH] Move declaration of usage() function to avoid conflicting
- implicit declaration.
-
-Signed-off-by: Jaco Kroon <jaco@uls.co.za>
----
- src/captagent.c | 31 +++++++++++++++----------------
- 1 file changed, 15 insertions(+), 16 deletions(-)
-
-diff --git a/src/captagent.c b/src/captagent.c
-index 6f5f533..052b0bb 100644
---- a/src/captagent.c
-+++ b/src/captagent.c
-@@ -108,6 +108,21 @@ void handler(int value) {
- exit(0);
- }
-
-+void usage(int8_t e)
-+{
-+ printf(
-+ "usage: Captagent <-vh> <-f config>\n"
-+ " -h display help/usage\n"
-+ " -a print a list of all availlable devices\n"
-+ " -v display version information\n"
-+ " -c validate configuration and exit\n"
-+ " -d enable daemon mode\n"
-+ " -n enable foreground mode\n"
-+ " -f [/path/to/rtpagent.xml] to specify a config file\n"
-+ " -D [/path/to/file.pcap] to specify a pcap file as input\n"
-+ " -x [1 - 10] set debug level\n");
-+ exit(e);
-+}
-
- // Print the list of availlable devices
- static void print_all_devices()
-@@ -230,22 +245,6 @@ int daemonize(int nofork)
- error: return -1;
- }
-
--void usage(int8_t e)
--{
-- printf(
-- "usage: Captagent <-vh> <-f config>\n"
-- " -h display help/usage\n"
-- " -a print a list of all availlable devices\n"
-- " -v display version information\n"
-- " -c validate configuration and exit\n"
-- " -d enable daemon mode\n"
-- " -n enable foreground mode\n"
-- " -f [/path/to/rtpagent.xml] to specify a config file\n"
-- " -D [/path/to/file.pcap] to specify a pcap file as input\n"
-- " -x [1 - 10] set debug level\n");
-- exit(e);
--}
--
- void print_hw() {
-
- char k[33];
---
-2.33.1
-