From fc5b6e4bd8a67994b0c56d1223c74d064164420f Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sun, 3 Sep 2006 01:37:26 +0000 Subject: r18012: Should fix bug 4018. NetApp filers expect paths in Open AndX Request to have a leading slash. Windows clients send the leading slash, so we should too. --- examples/libsmbclient/testread.c | 1 + 1 file changed, 1 insertion(+) (limited to 'examples') diff --git a/examples/libsmbclient/testread.c b/examples/libsmbclient/testread.c index 1f1219ca849..d59fc70ec11 100644 --- a/examples/libsmbclient/testread.c +++ b/examples/libsmbclient/testread.c @@ -55,6 +55,7 @@ int main(int argc, char * argv[]) { ret = smbc_read(fd, buffer, sizeof(buffer)); savedErrno = errno; + if (ret > 0) fwrite(buffer, 1, ret, stdout); } while (ret > 0); smbc_close(fd); -- cgit v1.2.1