You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2012/08/01 15:30:33 UTC

svn commit: r1367983 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs

Author: tabish
Date: Wed Aug  1 13:30:33 2012
New Revision: 1367983

URL: http://svn.apache.org/viewvc?rev=1367983&view=rev
Log:
fix for: https://issues.apache.org/jira/browse/AMQNET-383

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs?rev=1367983&r1=1367982&r2=1367983&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompFrame.cs Wed Aug  1 13:30:33 2012
@@ -163,7 +163,7 @@ namespace Apache.NMS.Stomp.Protocol
         {
             if(this.Command == KEEPALIVE)
             {
-                dataOut.Write(NEWLINE);
+                dataOut.Write(BREAK);
                 dataOut.Flush();
                 return;
             }