diff options
Diffstat (limited to 'user/smartmontools/musl-canonicalize_file_name.patch')
-rw-r--r-- | user/smartmontools/musl-canonicalize_file_name.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/user/smartmontools/musl-canonicalize_file_name.patch b/user/smartmontools/musl-canonicalize_file_name.patch new file mode 100644 index 000000000..bdc7cc6f1 --- /dev/null +++ b/user/smartmontools/musl-canonicalize_file_name.patch @@ -0,0 +1,12 @@ +# Ticket: https://smartmontools.org/ticket/921#ticket +--- a/os_linux.cpp ++++ b/os_linux.cpp +@@ -3176,7 +3176,7 @@ + { + char path[128]; + snprintf(path, sizeof(path), "/sys/block/%s/device", name); +- char * syshostpath = canonicalize_file_name(path); ++ char * syshostpath = realpath(path, NULL); + if (!syshostpath) + return false; + |