Below is the list of changes that have just been committed into a local
6.0 repository of rafal. When rafal does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-11-16 16:18:24+01:00, rafal@quant.(none) +1 -0
WL#4063 (backup stream library):
Fixing pb compile problem - solaris compiler doesn't accept // style comments inside .c files.
sql/backup/stream_v1_transport.c@stripped, 2007-11-16 16:18:22+01:00, rafal@quant.(none) +2 -2
Replacing // comments with /* */
diff -Nrup a/sql/backup/stream_v1_transport.c b/sql/backup/stream_v1_transport.c
--- a/sql/backup/stream_v1_transport.c 2007-11-16 15:10:33 +01:00
+++ b/sql/backup/stream_v1_transport.c 2007-11-16 16:18:22 +01:00
@@ -354,10 +354,10 @@ int write_buffer(backup_stream *s)
static
int append_to_buffer(backup_stream *s, blob *b)
{
- if (b->begin >= b->end) // no data to append
+ if (b->begin >= b->end) /* no data to append */
return BSTREAM_OK;
- if(s->buf.pos == s->buf.header) // current fragment empty
+ if(s->buf.pos == s->buf.header) /* current fragment empty */
s->buf.pos++;
while (s->buf.pos < s->buf.end && b->begin < b->end)
| Thread |
|---|
| • bk commit into 6.0 tree (rafal:1.2664) WL#4063 | rsomla | 16 Nov |