summaryrefslogtreecommitdiff
path: root/src/basic/string-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-10-03 10:32:34 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-10-03 10:32:34 +0200
commit4b9545f19e8ae9b232ca1083cff8140dc24390f6 (patch)
tree4c1b3301bebf65b781223eb6942a2dae6aefd903 /src/basic/string-util.c
parent8bdaf088ca22c4c12aee86e3a5e46998d042e21b (diff)
downloadsystemd-4b9545f19e8ae9b232ca1083cff8140dc24390f6.tar.gz
build-sys: change all HAVE_DECL_ macros to HAVE_
This is a legacy of autotools, where one detection routine used a different prefix then the others. $ git grep -e HAVE_DECL_ -l|xargs sed -i s/HAVE_DECL_/HAVE_/g
Diffstat (limited to 'src/basic/string-util.c')
-rw-r--r--src/basic/string-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/string-util.c b/src/basic/string-util.c
index 5808b1280e..9dc45d8766 100644
--- a/src/basic/string-util.c
+++ b/src/basic/string-util.c
@@ -826,7 +826,7 @@ int free_and_strdup(char **p, const char *s) {
return 1;
}
-#if !HAVE_DECL_EXPLICIT_BZERO
+#if !HAVE_EXPLICIT_BZERO
/*
* Pointer to memset is volatile so that compiler must de-reference
* the pointer and can't assume that it points to any function in