mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-23 11:15:31 +00:00
util: handle \s escape as defined in the XDG spec properly in cunescape()
This commit is contained in:
parent
923f8d76dc
commit
e167fb86f6
@ -1182,6 +1182,11 @@ char *cunescape_length(const char *s, size_t length) {
|
||||
*(t++) = '\'';
|
||||
break;
|
||||
|
||||
case 's':
|
||||
/* This is an extension of the XDG syntax files */
|
||||
*(t++) = ' ';
|
||||
break;
|
||||
|
||||
case 'x': {
|
||||
/* hexadecimal encoding */
|
||||
int a, b;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user