mount: FAT uuids are uppercase

This commit is contained in:
Lennart Poettering 2011-01-18 22:32:15 +01:00
parent 2292707df5
commit 0058d7b91c
2 changed files with 3 additions and 3 deletions

4
TODO
View File

@ -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

View File

@ -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)