chiark / gitweb /
[PATCH] udev - fix debug info for multiple rule file config
[elogind.git] / udev-remove.c
index c20c651dc53687056d701c0a8714a7f5d39f3b9b..e62d1fb1223bcbcd3a27e2ae5f31aa02b54ce8b1 100644 (file)
@@ -72,8 +72,8 @@ static int delete_node(struct udevice *dev)
        int retval;
        int i;
 
-       strncpy(filename, udev_root, sizeof(filename));
-       strncat(filename, dev->name, sizeof(filename));
+       strfieldcpy(filename, udev_root);
+       strfieldcat(filename, dev->name);
 
        info("removing device node '%s'", filename);
        retval = unlink(filename);
@@ -87,7 +87,8 @@ static int delete_node(struct udevice *dev)
        if (dev->partitions > 0) {
                info("removing partitions '%s[1-%i]'", filename, dev->partitions);
                for (i = 1; i <= dev->partitions; i++) {
-                       sprintf(partitionname, "%s%i", filename, i);
+                       strfieldcpy(partitionname, filename);
+                       strintcat(partitionname, i);
                        unlink(partitionname);
                }
        }
@@ -103,8 +104,8 @@ static int delete_node(struct udevice *dev)
                        if (linkname == NULL)
                                break;
 
-                       strncpy(filename, udev_root, sizeof(filename));
-                       strncat(filename, linkname, sizeof(filename));
+                       strfieldcpy(filename, udev_root);
+                       strfieldcat(filename, linkname);
 
                        dbg("unlinking symlink '%s'", filename);
                        retval = unlink(filename);
@@ -141,7 +142,7 @@ int udev_remove_device(char *path, char *subsystem)
                temp = strrchr(path, '/');
                if (temp == NULL)
                        return -ENODEV;
-               strncpy(dev.name, &temp[1], sizeof(dev.name));
+               strfieldcpy(dev.name, &temp[1]);
        }
 
        dbg("name is '%s'", dev.name);