* i386-stub.c, sparc-stub.c (getpacket): Actually check checksums.
[deliverable/binutils-gdb.git] / gdb / sparc-stub.c
index 62636c2cad7f780b3530bb75d7bd0a873ebe64a2..47b98109d73a43733946ce424609c558940aebbe 100644 (file)
@@ -289,11 +289,6 @@ getpacket(buffer)
        {
          xmitcsum = hex(getDebugChar()) << 4;
          xmitcsum |= hex(getDebugChar());
-#if 1
-         /* Humans shouldn't have to figure out checksums to type to it. */
-         putDebugChar ('+');
-         return;
-#endif
          if (checksum != xmitcsum)
            putDebugChar('-');  /* failed checksum */
          else
This page took 0.022686 seconds and 4 git commands to generate.