summaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'server.c')
-rw-r--r--server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server.c b/server.c
index efeae56..3369460 100644
--- a/server.c
+++ b/server.c
@@ -203,9 +203,9 @@ SaveBytes(FD fd, const unsigned char *buf, long n)
}
/* now copy the new bytes onto the end of the old bytes */
- bcopy(/* from */ buf,
- /* to */ (CS[fd].SavedBytes + CS[fd].NumberofSavedBytes),
- /* count */ n);
+ memcpy(/* to */ (CS[fd].SavedBytes + CS[fd].NumberofSavedBytes),
+ /* from */ buf,
+ /* count */ n);
CS[fd].NumberofSavedBytes += n;
}