chiark / gitweb /
fix selinux compilation
[elogind.git] / udev_libc_wrapper.c
index 1852141c9378c7baa9b389013ed838a90a2d9871..4e9f9f1fe87108625ae539fbf4823a8a1b061ed4 100644 (file)
@@ -159,7 +159,8 @@ static unsigned long get_id_by_name(const char *uname, const char *dbfile)
                if (count >= sizeof(line))
                        continue;
 
-               strlcpy(line, bufline, count);
+               memcpy(line, bufline, count-1);
+               line[count-1] = '\0';
                pos = line;
 
                /* get name */