diff options
author | Ben Stockett <thebenperson@pm.me> | 2021-07-09 22:29:36 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2021-07-10 14:19:50 +0200 |
commit | 4226dfafbac2167e1441a7a65d00c29c5016d4fb (patch) | |
tree | fb9634b44f207d3513047c65e4954cba437c3dcf /man/sd_bus_set_property.xml | |
parent | Fixed typo (#20187) (diff) | |
download | systemd-4226dfafbac2167e1441a7a65d00c29c5016d4fb.tar.xz systemd-4226dfafbac2167e1441a7a65d00c29c5016d4fb.zip |
Updated manpage for sd_bus_set_property
Updated manpage for sd_bus_set_property and sd_bus_set_propertyv. In the old manpage, these functions included the parameter sd_bus_message **reply when the actual function had no such argument.
Diffstat (limited to 'man/sd_bus_set_property.xml')
-rw-r--r-- | man/sd_bus_set_property.xml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/man/sd_bus_set_property.xml b/man/sd_bus_set_property.xml index 66477b3500..d6a410e797 100644 --- a/man/sd_bus_set_property.xml +++ b/man/sd_bus_set_property.xml @@ -39,7 +39,6 @@ <paramdef>const char *<parameter>interface</parameter></paramdef> <paramdef>const char *<parameter>member</parameter></paramdef> <paramdef>sd_bus_error *<parameter>ret_error</parameter></paramdef> - <paramdef>sd_bus_message **<parameter>reply</parameter></paramdef> <paramdef>const char *<parameter>type</parameter></paramdef> <paramdef>...</paramdef> </funcprototype> @@ -52,7 +51,6 @@ <paramdef>const char *<parameter>interface</parameter></paramdef> <paramdef>const char *<parameter>member</parameter></paramdef> <paramdef>sd_bus_error *<parameter>ret_error</parameter></paramdef> - <paramdef>sd_bus_message **<parameter>reply</parameter></paramdef> <paramdef>const char *<parameter>type</parameter></paramdef> <paramdef>va_list <parameter>ap</parameter></paramdef> </funcprototype> @@ -115,10 +113,9 @@ <citerefentry><refentrytitle>sd_bus_call_method</refentrytitle><manvolnum>3</manvolnum></citerefentry>. </para> - <para><function>sd_bus_set_property()</function> sets a D-Bus property. On success, the response - is stored in <parameter>reply</parameter>. If setting the property fails or an internal error - occurs, an error is returned and an extended description of the error is optionally stored in - <parameter>ret_error</parameter> if it is not <constant>NULL</constant>. + <para><function>sd_bus_set_property()</function> sets a D-Bus property. If setting the property + fails or an internal error occurs, an error is returned and an extended description of the error + is optionally stored in <parameter>ret_error</parameter> if it is not <constant>NULL</constant>. <parameter>type</parameter> and the arguments that follow it describe the new value of the property and must follow the format described in <citerefentry><refentrytitle>sd_bus_message_append</refentrytitle><manvolnum>3</manvolnum></citerefentry>. |