mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-24 18:56:59 +07:00
mount: FAT uuids are uppercase
This commit is contained in:
parent
2292707df5
commit
0058d7b91c
4
TODO
4
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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user