chiark / gitweb /
install: improve paths we show the user when enabling/disabling
authorLennart Poettering <lennart@poettering.net>
Tue, 17 Jun 2014 00:15:03 +0000 (02:15 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 17 Jun 2014 00:43:44 +0000 (02:43 +0200)
src/shared/install.c

index afb2e5374ab12975c90f8c87030740e1fdf2a777..c7cb5220281a84f913db6576446a655a600321f1 100644 (file)
@@ -160,12 +160,16 @@ static int add_file_change(
         if (!c[i].path)
                 return -ENOMEM;
 
+        path_kill_slashes(c[i].path);
+
         if (source) {
                 c[i].source = strdup(source);
                 if (!c[i].source) {
                         free(c[i].path);
                         return -ENOMEM;
                 }
+
+                path_kill_slashes(c[i].path);
         } else
                 c[i].source = NULL;