mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
33d703602d
a/coreutils-9.0-x86_64-1.txz: Upgraded. Thanks to GazL for pointing out where I needed to be looking in the code to stick with the traditional (for us, anyway) ls quoting style. n/ca-certificates-20210924-noarch-1.txz: Upgraded. Removed DST_Root_CA_X3.crt. n/cifs-utils-6.14-x86_64-1.txz: Upgraded.
11 lines
420 B
Diff
11 lines
420 B
Diff
--- ./src/ls.c.orig 2021-09-24 06:31:05.000000000 -0500
|
|
+++ ./src/ls.c 2021-09-24 19:47:32.230001419 -0500
|
|
@@ -2342,7 +2342,7 @@
|
|
qs = getenv_quoting_style ();
|
|
if (qs < 0)
|
|
qs = (ls_mode == LS_LS
|
|
- ? (stdout_isatty () ? shell_escape_quoting_style : -1)
|
|
+ ? (stdout_isatty () ? escape_quoting_style : -1)
|
|
: escape_quoting_style);
|
|
if (0 <= qs)
|
|
set_quoting_style (NULL, qs);
|