machine: adjust error message to use 'normalized' instead of ../
authorLuca Boccassi <luca.boccassi@microsoft.com>
Tue, 15 Dec 2020 18:26:34 +0000 (18:26 +0000)
committerMichael Biebl <biebl@debian.org>
Sun, 20 Mar 2022 19:55:25 +0000 (19:55 +0000)
(cherry picked from commit 724e689715c8d9f23d035ab20d8c87b6b6c06e33)

Gbp-Pq: Name machine-adjust-error-message-to-use-normalized-instead-of.patch

src/machine/machine-dbus.c

index 3c8f4fddbe2088f62cb5acc29e9889c8cea56715..5ed892f6f4e3e5b1feaf948c843cd5371b9bf454 100644 (file)
@@ -827,12 +827,12 @@ int bus_machine_method_bind_mount(sd_bus_message *message, void *userdata, sd_bu
                 return r;
 
         if (!path_is_absolute(src) || !path_is_normalized(src))
-                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Source path must be absolute and not contain ../.");
+                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Source path must be absolute and normalized.");
 
         if (isempty(dest))
                 dest = src;
         else if (!path_is_absolute(dest) || !path_is_normalized(dest))
-                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Destination path must be absolute and not contain ../.");
+                return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Destination path must be absolute and normalized.");
 
         r = bus_verify_polkit_async(
                         message,