diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-03 08:45:50 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-03 08:45:50 -0400 |
commit | 2e16351ec5b23e4ca1c03106ef2152d80aca7f20 (patch) | |
tree | ec85fdb9bd4fcfd3b9452b845a015a87605e162d /src | |
parent | 0d0e9310f63ce37ecbad63c2c78fb747fd93417c (diff) |
src/libudev/libudev-device.c: fix typo
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/libudev/libudev-device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libudev/libudev-device.c b/src/libudev/libudev-device.c index 84824c9f37..cd94b7edff 100644 --- a/src/libudev/libudev-device.c +++ b/src/libudev/libudev-device.c @@ -1456,7 +1456,7 @@ _public_ int udev_device_set_sysattr_value(struct udev_device *udev_device, cons else value_len = strlen(value); - strscpyl(path, sizeof(path), udev_device_get_syspath(dev), "/", sysattr, NULL); + util_strscpyl(path, sizeof(path), udev_device_get_syspath(dev), "/", sysattr, NULL); if (lstat(path, &statbuf) != 0) { udev_list_entry_add(&dev->sysattr_value_list, sysattr, NULL); ret = -ENXIO; |