aboutsummaryrefslogtreecommitdiff
path: root/nxcomp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-13 13:43:54 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-13 13:43:54 +0100
commit23fb617551f7d89dbc1fc9e216b7f12d2936e1a2 (patch)
tree2c01ddb7c7353609121a158c18c1a5487c98ec83 /nxcomp
parent6e662473126d0668493732ece7e3c3bb1b0ea72c (diff)
downloadnx-libs-23fb617551f7d89dbc1fc9e216b7f12d2936e1a2.tar.gz
nx-libs-23fb617551f7d89dbc1fc9e216b7f12d2936e1a2.tar.bz2
nx-libs-23fb617551f7d89dbc1fc9e216b7f12d2936e1a2.zip
Fix several typos in nxcomp.
Former patch file names: 991_fix-hr-typos.full+lite.patch 991_fix-hr-typos.full.patch
Diffstat (limited to 'nxcomp')
-rw-r--r--nxcomp/CHANGELOG2
-rw-r--r--nxcomp/ClientReadBuffer.cpp2
-rw-r--r--nxcomp/EncodeBuffer.cpp4
-rw-r--r--nxcomp/GenericChannel.cpp2
-rw-r--r--nxcomp/ProxyReadBuffer.cpp2
-rw-r--r--nxcomp/ServerReadBuffer.cpp2
-rw-r--r--nxcomp/Transport.h2
-rw-r--r--nxcomp/Types.h2
8 files changed, 9 insertions, 9 deletions
diff --git a/nxcomp/CHANGELOG b/nxcomp/CHANGELOG
index b7ef0d97a..b0323d4a7 100644
--- a/nxcomp/CHANGELOG
+++ b/nxcomp/CHANGELOG
@@ -668,7 +668,7 @@ nxcomp-2.0.0-70
nxcomp-2.0.0-69
-- Changed the format of the persistent cache to accomodate the new
+- Changed the format of the persistent cache to accommodate the new
encoding of the render opcodes. Caches from the 1.4.0 and 1.5.0
should be still loaded and saved correctly when connected to and
old version of the library.
diff --git a/nxcomp/ClientReadBuffer.cpp b/nxcomp/ClientReadBuffer.cpp
index b32033b17..14aca3240 100644
--- a/nxcomp/ClientReadBuffer.cpp
+++ b/nxcomp/ClientReadBuffer.cpp
@@ -29,7 +29,7 @@ unsigned int ClientReadBuffer::suggestedLength(unsigned int pendingLength)
//
// Even if the pending data is not
// enough to make a complete message,
- // resize the buffer to accomodate
+ // resize the buffer to accommodate
// it all.
//
diff --git a/nxcomp/EncodeBuffer.cpp b/nxcomp/EncodeBuffer.cpp
index 466a1d7a0..12a57180e 100644
--- a/nxcomp/EncodeBuffer.cpp
+++ b/nxcomp/EncodeBuffer.cpp
@@ -505,12 +505,12 @@ void EncodeBuffer::growBuffer(unsigned int numBytes)
{
#ifdef PANIC
*logofs << "EncodeBuffer: PANIC! Error in context [C] "
- << "growing buffer to accomodate " << numBytes
+ << "growing buffer to accommodate " << numBytes
<< " bytes .\n" << logofs_flush;
#endif
cerr << "Error" << ": Error in context [C] "
- << "growing encode buffer to accomodate "
+ << "growing encode buffer to accommodate "
<< numBytes << " bytes.\n";
HandleAbort();
diff --git a/nxcomp/GenericChannel.cpp b/nxcomp/GenericChannel.cpp
index 641ad36d4..bf72bf091 100644
--- a/nxcomp/GenericChannel.cpp
+++ b/nxcomp/GenericChannel.cpp
@@ -210,7 +210,7 @@ int GenericChannel::handleRead(EncodeBuffer &encodeBuffer, const unsigned char *
// All data has been read from the read buffer.
// We still need to mark the end of the encode
// buffer just before sending the frame. This
- // allows us to accomodate multiple reads in
+ // allows us to accommodate multiple reads in
// a single frame.
//
diff --git a/nxcomp/ProxyReadBuffer.cpp b/nxcomp/ProxyReadBuffer.cpp
index b0de14921..99c3cbaa2 100644
--- a/nxcomp/ProxyReadBuffer.cpp
+++ b/nxcomp/ProxyReadBuffer.cpp
@@ -50,7 +50,7 @@ unsigned int ProxyReadBuffer::suggestedLength(unsigned int pendingLength)
//
// Even if the readable data is not
// enough to make a complete message,
- // resize the buffer to accomodate
+ // resize the buffer to accommodate
// it all.
//
diff --git a/nxcomp/ServerReadBuffer.cpp b/nxcomp/ServerReadBuffer.cpp
index 53c1dec57..96c146b77 100644
--- a/nxcomp/ServerReadBuffer.cpp
+++ b/nxcomp/ServerReadBuffer.cpp
@@ -46,7 +46,7 @@ unsigned int ServerReadBuffer::suggestedLength(unsigned int pendingLength)
//
// Even if the readable data is not
// enough to make a complete message,
- // resize the buffer to accomodate
+ // resize the buffer to accommodate
// it all.
//
diff --git a/nxcomp/Transport.h b/nxcomp/Transport.h
index 2f313b29f..a2efa5270 100644
--- a/nxcomp/Transport.h
+++ b/nxcomp/Transport.h
@@ -226,7 +226,7 @@ class Transport
protected:
//
- // Make room in the buffer to accomodate
+ // Make room in the buffer to accommodate
// at least size bytes.
//
diff --git a/nxcomp/Types.h b/nxcomp/Types.h
index b3fe40e31..b7506124e 100644
--- a/nxcomp/Types.h
+++ b/nxcomp/Types.h
@@ -179,7 +179,7 @@ typedef set < File *, T_older > T_files;
typedef list < int > T_list;
//
-// Used to accomodate data to be read and
+// Used to accommodate data to be read and
// written to a socket.
//