blob: f50d8a6dfb513ee6b86f1842e9a338fe5348588c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- konverse/xmlstream.cpp 2001/04/07 03:37:01 1.11
+++ konverse/xmlstream.cpp 2002/02/25 04:20:53 1.12
@@ -167,7 +167,7 @@
bytesWritten = write(fd, (void *)(const char *)utf, utf.length());
- if ( bytesWritten != (int)s.length() )
+ if ( bytesWritten != (int)utf.length() )
connectionLost();
return bytesWritten;
|