summaryrefslogtreecommitdiff
path: root/src/shared/log-link.h
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-09-28 22:04:52 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-09-29 03:37:09 +0900
commit5977b71f28075c34eb9e45aaa2d7cdc791f7eaf8 (patch)
tree44f0e8caf628eae20a9be91e63b7f6b47d871551 /src/shared/log-link.h
parent01afd0f7f53f7807294ce7c008ecf8a043a920fe (diff)
downloadsystemd-5977b71f28075c34eb9e45aaa2d7cdc791f7eaf8.tar.gz
libsystemd-network: make sd_dhcp_client_get_ifname() or friends return negative errno on error
Diffstat (limited to 'src/shared/log-link.h')
-rw-r--r--src/shared/log-link.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/shared/log-link.h b/src/shared/log-link.h
index 51eaa0c06e..5f2b176353 100644
--- a/src/shared/log-link.h
+++ b/src/shared/log-link.h
@@ -17,24 +17,6 @@
log_interface_full_errno_zerook(ifname, level, _error, __VA_ARGS__); \
})
-#define log_interface_prefix_full_errno_zerook(prefix, ifname_expr, error, fmt, ...) \
- ({ \
- int _e = (error); \
- if (DEBUG_LOGGING) \
- log_interface_full_errno_zerook( \
- ifname_expr, \
- LOG_DEBUG, _e, prefix fmt, \
- ##__VA_ARGS__); \
- -ERRNO_VALUE(_e); \
- })
-
-#define log_interface_prefix_full_errno(prefix, ifname_expr, error, fmt, ...) \
- ({ \
- int _error = (error); \
- ASSERT_NON_ZERO(_error); \
- log_interface_prefix_full_errno_zerook(prefix, ifname_expr, _error, fmt, ##__VA_ARGS__); \
- })
-
/*
* The following macros append INTERFACE= to the message.
* The macros require a struct named 'Link' which contains 'char *ifname':