summaryrefslogtreecommitdiff
path: root/source3/libsmb/clidgram.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-02-26 17:40:43 +0000
committerJeremy Allison <jra@samba.org>2002-02-26 17:40:43 +0000
commit62299aa7475bad48ba3e230596f09e794c2b4ce5 (patch)
tree7ef38a07a3d7279135e23af343cc4a828e454ac3 /source3/libsmb/clidgram.c
parent97d96862ca84f599ee6fed0910389e07d46ee91d (diff)
downloadsamba-62299aa7475bad48ba3e230596f09e794c2b4ce5.tar.gz
samba-62299aa7475bad48ba3e230596f09e794c2b4ce5.tar.bz2
samba-62299aa7475bad48ba3e230596f09e794c2b4ce5.zip
bcopy must DIE ! Stop people creeping use of bcopy back into the code
(and yes I know who you are..... :-). Jeremy. (This used to be commit 330b0df960329bcf4696b8fa4a7357e6c456f74e)
Diffstat (limited to 'source3/libsmb/clidgram.c')
-rw-r--r--source3/libsmb/clidgram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clidgram.c b/source3/libsmb/clidgram.c
index 0b07bc2c99..abade68b01 100644
--- a/source3/libsmb/clidgram.c
+++ b/source3/libsmb/clidgram.c
@@ -117,7 +117,7 @@ int cli_get_response(int dgram_sock, BOOL unique, char *mailslot, char *buf, int
/* Copy the data to buffer, respecting sizes ... */
- bcopy(&dgram->data[92], buf, MIN(bufsiz, (dgram->datasize - 92)));
+ memset(buf, &dgram->data[92], MIN(bufsiz, (dgram->datasize - 92)));
}
else