summaryrefslogtreecommitdiff
path: root/src/udev/udevadm-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-02-08 11:22:39 -0500
committerAnthony G. Basile <blueness@gentoo.org>2015-02-08 11:22:39 -0500
commit21212e522478551f3d256619a2efe2b885ad0948 (patch)
treeb132101f9c1d5656596ed083a82c3ac220bce74a /src/udev/udevadm-util.c
parent750c8ded9b84ded5f08c34a3d82ff862da0398d8 (diff)
util: rework strappenda(), and rename it strjoina()
After all it is now much more like strjoin() than strappend(). At the same time, add support for NULL sentinels, even if they are normally not necessary. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udevadm-util.c')
-rw-r--r--src/udev/udevadm-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevadm-util.c b/src/udev/udevadm-util.c
index 37e80c31df..3f0e45e26c 100644
--- a/src/udev/udevadm-util.c
+++ b/src/udev/udevadm-util.c
@@ -25,7 +25,7 @@ struct udev_device *find_device(struct udev *udev,
assert(id);
if (prefix && !startswith(id, prefix))
- id = strappenda(prefix, id);
+ id = strjoina(prefix, id);
if (startswith(id, "/dev/")) {
struct stat statbuf;