diff options
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index f18505a418..a381d13cae 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2013,6 +2013,12 @@ static int cmd_posix(void) if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) { pstrcat(caps, "posix_path_operations "); } + if (caplow & CIFS_UNIX_LARGE_READ_CAP) { + pstrcat(caps, "large_read "); + } + if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) { + pstrcat(caps, "large_write "); + } if (strlen(caps) > 0 && caps[strlen(caps)-1] == ' ') { caps[strlen(caps)-1] = '\0'; |