mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-03-08 14:25:37 +07: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