diff options
Diffstat (limited to 'src/OtherCommands.cxx')
-rw-r--r-- | src/OtherCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OtherCommands.cxx b/src/OtherCommands.cxx index 52899d184..f60078cf9 100644 --- a/src/OtherCommands.cxx +++ b/src/OtherCommands.cxx @@ -114,7 +114,7 @@ handle_lsinfo(Client *client, int argc, char *argv[]) /* default is root directory */ uri = ""; - if (strncmp(uri, "file:///", 8) == 0) { + if (memcmp(uri, "file:///", 8) == 0) { /* print information about an arbitrary local file */ const char *path_utf8 = uri + 7; const Path path_fs = Path::FromUTF8(path_utf8); |