diff options
author | Sylvain Plantefève <melkor73@gmail.com> | 2014-12-28 12:52:15 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2014-12-28 13:05:08 +0100 |
commit | 94b5088c8d961078d73a2f8659c0ea21f9ebc500 (patch) | |
tree | d6fa0eda9f39eee303050487b193bc82973ff0df /src/machine/image-dbus.c | |
parent | 1517ab5d18f2f057c3f0d8c9b8444595eac71df5 (diff) | |
download | systemd-94b5088c8d961078d73a2f8659c0ea21f9ebc500.tar.gz |
machined: Fix MarkReadOnly method's name on bus
Diffstat (limited to 'src/machine/image-dbus.c')
-rw-r--r-- | src/machine/image-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/image-dbus.c b/src/machine/image-dbus.c index 5ac689c4bd..659f7de825 100644 --- a/src/machine/image-dbus.c +++ b/src/machine/image-dbus.c @@ -142,7 +142,7 @@ const sd_bus_vtable image_vtable[] = { SD_BUS_METHOD("Remove", NULL, NULL, bus_image_method_remove, 0), SD_BUS_METHOD("Rename", "s", NULL, bus_image_method_rename, 0), SD_BUS_METHOD("Clone", "sb", NULL, bus_image_method_clone, 0), - SD_BUS_METHOD("MarkeReadOnly", "b", NULL, bus_image_method_mark_read_only, 0), + SD_BUS_METHOD("MarkReadOnly", "b", NULL, bus_image_method_mark_read_only, 0), SD_BUS_VTABLE_END }; |