chiark / gitweb /
udev: move string copy functions to shared/
[elogind.git] / src / udev / udev-builtin-blkid.c
index 4293103046c37bd8ed121764a9f2d963091473e3..56a05f5e50feb0d28a8daab3685e5b7271ef1686 100644 (file)
@@ -76,7 +76,7 @@ static void print_property(struct udev_device *dev, bool test, const char *name,
                 udev_builtin_add_property(dev, test, "ID_PART_ENTRY_TYPE", s);
 
         } else if (startswith(name, "PART_ENTRY_")) {
-                util_strscpyl(s, sizeof(s), "ID_", name, NULL);
+                strscpyl(s, sizeof(s), "ID_", name, NULL);
                 udev_builtin_add_property(dev, test, s, value);
         }
 }