portable: fix silly typo in D-Bus interface name

D'oh. Nobody noticed in 3 years, I guess nobody calls these directly
and instead the manager's methods are used. Still we'll have to keep
this around, so just hide it.
This commit is contained in:
Luca Boccassi 2023-06-15 18:54:56 +01:00
parent 5ed91481ab
commit e0a067a251
2 changed files with 22 additions and 11 deletions

View file

@ -380,13 +380,13 @@ node /org/freedesktop/portable1 {
in s copy_mode,
out a(sss) changes_removed,
out a(sss) changes_updated);
ReattacheWithExtensions(in as extensions,
in as matches,
in s profile,
in s copy_mode,
in t flags,
out a(sss) changes_removed,
out a(sss) changes_updated);
ReattachWithExtensions(in as extensions,
in as matches,
in s profile,
in s copy_mode,
in t flags,
out a(sss) changes_removed,
out a(sss) changes_updated);
Remove();
MarkReadOnly(in b read_only);
SetLimit(in t limit);
@ -438,7 +438,7 @@ node /org/freedesktop/portable1 {
<!--method Reattach is not documented!-->
<!--method ReattacheWithExtensions is not documented!-->
<!--method ReattachWithExtensions is not documented!-->
<!--method Remove is not documented!-->
@ -472,7 +472,7 @@ node /org/freedesktop/portable1 {
<variablelist class="dbus-method" generated="True" extra-ref="Reattach()"/>
<variablelist class="dbus-method" generated="True" extra-ref="ReattacheWithExtensions()"/>
<variablelist class="dbus-method" generated="True" extra-ref="ReattachWithExtensions()"/>
<variablelist class="dbus-method" generated="True" extra-ref="Remove()"/>
@ -530,7 +530,7 @@ node /org/freedesktop/portable1 {
<listitem><para>Reattach()</para></listitem>
<listitem><para>ReattacheWithExtensions()</para></listitem>
<listitem><para>ReattachWithExtensions()</para></listitem>
<listitem><para>Remove()</para></listitem>

View file

@ -934,7 +934,7 @@ const sd_bus_vtable image_vtable[] = {
"a(sss)", changes_updated),
bus_image_method_reattach,
SD_BUS_VTABLE_UNPRIVILEGED),
SD_BUS_METHOD_WITH_ARGS("ReattacheWithExtensions",
SD_BUS_METHOD_WITH_ARGS("ReattachWithExtensions",
SD_BUS_ARGS("as", extensions,
"as", matches,
"s", profile,
@ -959,6 +959,17 @@ const sd_bus_vtable image_vtable[] = {
SD_BUS_NO_RESULT,
bus_image_method_set_limit,
SD_BUS_VTABLE_UNPRIVILEGED),
/* Deprecated silly typo */
SD_BUS_METHOD_WITH_ARGS("ReattacheWithExtensions",
SD_BUS_ARGS("as", extensions,
"as", matches,
"s", profile,
"s", copy_mode,
"t", flags),
SD_BUS_RESULT("a(sss)", changes_removed,
"a(sss)", changes_updated),
bus_image_method_reattach,
SD_BUS_VTABLE_UNPRIVILEGED|SD_BUS_VTABLE_HIDDEN),
SD_BUS_VTABLE_END
};