summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch')
-rw-r--r--meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch b/meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch
new file mode 100644
index 000000000..6f3fbffbd
--- /dev/null
+++ b/meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch
@@ -0,0 +1,28 @@
1From bfe68126693f9159f7ac66a69217e0b5f43e5781 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 20 Jul 2017 21:11:21 -0700
4Subject: [PATCH 4/5] wvcrash: Replace use of basename API
5
6musl does not have this API
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 utils/wvcrash.cc | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/utils/wvcrash.cc b/utils/wvcrash.cc
14index 0417759..3d160b7 100644
15--- a/utils/wvcrash.cc
16+++ b/utils/wvcrash.cc
17@@ -404,7 +404,7 @@ extern void __wvcrash_init_buffers(const char *program_name);
18 void wvcrash_setup(const char *_argv0, const char *_desc)
19 {
20 if (_argv0)
21- argv0 = basename(_argv0);
22+ argv0 = strrchr(_argv0, '/') ? strrchr(_argv0, '/')+1 : _argv0;
23 __wvcrash_init_buffers(argv0);
24 if (_desc)
25 {
26--
272.13.3
28