commit | 9cfdb1c12bae26f8aed9df947c456e67ae03096c | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Thu Mar 18 01:03:34 2021 -0400 |
committer | Steve French <stfrench@microsoft.com> | Sun Apr 25 16:28:23 2021 -0500 |
tree | 22488edd0dfd6adc7ded099c5d3e7a8050c2efe3 | |
parent | 8d7672235533dbeab4a5373b49f1b4273cdc2c6a [diff] |
cifs: constify get_normalized_path() properly As it is, it takes const char * and, in some cases, stores it in caller's variable that is plain char *. Fortunately, none of the callers actually proceeded to modify the string via now-non-const alias, but that's trouble waiting to happen. It's easy to do properly, anyway... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Steve French <stfrench@microsoft.com>