summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO4
-rw-r--r--src/util.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/TODO b/TODO
index 8422f86a7..f87f7d118 100644
--- a/TODO
+++ b/TODO
@@ -1,9 +1,9 @@
+* don't fail a service if reload fails
+
* reload PID file after reload, allow dynamically changing main PIDs
* Fix multiple reload statements
-* FAT uuids are uppercase, systemd refers to them in lowercase, breakage (mjg59)
-
* make usage of SIGKILL when shutting down services optional
* figure out what happened to bluez patch
diff --git a/src/util.c b/src/util.c
index 67a75c570..30a3b058f 100644
--- a/src/util.c
+++ b/src/util.c
@@ -3531,7 +3531,7 @@ char *fstab_node_to_udev_node(const char *p) {
if (!t)
return NULL;
- r = asprintf(&dn, "/dev/disk/by-uuid/%s", ascii_strlower(t));
+ r = asprintf(&dn, "/dev/disk/by-uuid/%s", t);
free(t);
if (r < 0)