]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: fix copy paste error (s/source/destination/) (#5197)
authorEvgeny Vereshchagin <evvers@ya.ru>
Tue, 31 Jan 2017 18:04:01 +0000 (21:04 +0300)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 31 Jan 2017 18:04:01 +0000 (13:04 -0500)
```
-bash-4.3# systemd-run --property BindPaths=/etc:tmp/hey sh -c 'ls /tmp/hey'
```
prints
`Destination path tmp/hey is not absolute.`
instead of
`Destination path /etc is not absolute.`

CID #1368239

src/core/dbus-execute.c

index 3ae894d59c0f8e63aa25ebd40b17a842c7fece38..cc10e2d8e746e5fd5372d0f5e41e6ea8b7b3dbd6 100644 (file)
@@ -1698,7 +1698,7 @@ int bus_exec_context_set_transient_property(
                         if (!path_is_absolute(source))
                                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Source path %s is not absolute.", source);
                         if (!path_is_absolute(destination))
-                                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Destination path %s is not absolute.", source);
+                                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Destination path %s is not absolute.", destination);
                         if (!IN_SET(mount_flags, 0, MS_REC))
                                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unknown mount flags.");