diff options
author | Wayne Davison <wayned@samba.org> | 2003-09-11 04:48:07 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-09-11 04:48:07 +0000 |
commit | 4ea812445d5f42d44a16a4d04eae8f48127ec66f (patch) | |
tree | 348093f506f91b6b63a505e0937c637180131428 /compat.c | |
parent | e80a7654127e03b6bac23c1efc2226129bbc8bfe (diff) | |
download | rsync-4ea812445d5f42d44a16a4d04eae8f48127ec66f.tar.gz |
Got rid of some "/* dw */" comments.
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,8 +42,8 @@ extern int checksum_seed; extern int protocol_version; extern int verbose; -extern int read_batch; /* dw */ -extern int write_batch; /* dw */ +extern int read_batch; +extern int write_batch; void setup_protocol(int f_out,int f_in) { @@ -85,7 +85,7 @@ void setup_protocol(int f_out,int f_in) } if (am_server) { - if (read_batch || write_batch) /* dw */ + if (read_batch || write_batch) checksum_seed = 32761; else checksum_seed = time(NULL); |