]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs: note that udev doesn't deal with binary attribute values (#11383)
authorSam Morris <sam@robots.org.uk>
Thu, 10 Jan 2019 17:05:34 +0000 (17:05 +0000)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 10 Jan 2019 17:05:34 +0000 (18:05 +0100)
Related to #5329.

man/udev_device_has_tag.xml

index f34ae9ed370ced22c70e104b7d9e25785756643d..e27b770215720f9771d64e31b957951a3aae530b 100644 (file)
     <function>udev_device_get_property_value()</function> and
     <function>udev_device_get_sysattr_value()</function> return a
     pointer to a constant string of the requested value. On error,
-    <constant>NULL</constant> is returned.</para>
+    <constant>NULL</constant> is returned. Attributes that may
+    contain <constant>NUL</constant> bytes should not be retrieved
+    with <function>udev_device_get_sysattr_value()</function>;
+    instead, read them directly from the files within the device's
+    <property>syspath</property>.</para>
 
     <para>On success,
     <function>udev_device_set_sysattr_value()</function> returns
     an integer greater than, or equal to, <constant>0</constant>.
-    On failure, a negative error code is returned.</para>
+    On failure, a negative error code is returned. Values that
+    contain <constant>NUL</constant> bytes should not be set with
+    this function; instead, write them directly to the files within
+    the device's <property>syspath</property>.</para>
 
     <para>On success, <function>udev_device_has_tag()</function>
     returns <constant>1</constant> or <constant>0</constant>,