diff options
| author | Khem Raj <raj.khem@gmail.com> | 2024-03-15 14:34:06 -0700 | 
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-08-22 14:50:41 -0700 | 
| commit | 0ef71391f0fb15039550a09c218977fa3e1abaf1 (patch) | |
| tree | 3c38053afa63cbfe0ee720fcccf3147df1d2a9be /zebra/zebra_netns_notify.c | |
| parent | 44e8a958b0cc9aa6042863d442e3da2b7352c168 (diff) | |
zebra: Mimic GNU basename() API for non-glibc library e.g. musl
musl only provides POSIX version of basename and it has also removed
providing it via string.h header [1] which now results in compile errors
with newer compilers e.g. clang-18
[1] https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'zebra/zebra_netns_notify.c')
| -rw-r--r-- | zebra/zebra_netns_notify.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/zebra_netns_notify.c b/zebra/zebra_netns_notify.c index fb326b0ddf..3ac4fdd737 100644 --- a/zebra/zebra_netns_notify.c +++ b/zebra/zebra_netns_notify.c @@ -42,6 +42,10 @@  #define ZEBRA_NS_POLLING_INTERVAL_MSEC     1000  #define ZEBRA_NS_POLLING_MAX_RETRIES  200 +#if !defined(__GLIBC__) +#define basename(src) (strrchr(src, '/') ? strrchr(src, '/') + 1 : src) +#endif +  DEFINE_MTYPE_STATIC(ZEBRA, NETNS_MISC, "ZebraNetNSInfo");  static struct event *zebra_netns_notify_current;  | 
