diff options
author | Dwight <dmerriman@gmail.com> | 2008-12-02 14:24:45 -0500 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2008-12-02 14:24:45 -0500 |
commit | 60b769a8cb1eb0dbb4e210ef6cdc5e0bb17fb91e (patch) | |
tree | f45e3eb01fbf91d4d6397258d15ffbcbb0b0c7c4 /grid | |
parent | aa8d238b0f9cbd586cf15af5bfaafc06678165cd (diff) | |
download | mongo-60b769a8cb1eb0dbb4e210ef6cdc5e0bb17fb91e.tar.gz |
replication fixes -- "first: true" support (local.dbinfo.*); clean up class name
Diffstat (limited to 'grid')
-rw-r--r-- | grid/message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grid/message.cpp b/grid/message.cpp index eb58346ff04..687090f12a6 100644 --- a/grid/message.cpp +++ b/grid/message.cpp @@ -195,7 +195,7 @@ again: if( len < 0 || len > 16000000 ) { if( len == 0xffffffff ) { - // Endian check from the client, after connecting, to see what mode server is running in. + // Endian check from the database, after connecting, to see what mode server is running in. unsigned foo = 0x10203040; int x = ::send(sock, (char *) &foo, 4, 0); if( x <= 0 ) { |