Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2009-03-05 09:50:32 +0000
committereutarass2009-03-05 09:50:32 +0000
commitac3f1eff064dca5ef45a48ab971ccf71586eb9d9 (patch)
treed64dd4c40c42accb2205e6991d36995db649e8d9
parent4d26cac4a07e68362ddd97d6fb7828a18e3bfc75 (diff)
downloadorg.eclipse.tcf.agent-ac3f1eff064dca5ef45a48ab971ccf71586eb9d9.tar.gz
org.eclipse.tcf.agent-ac3f1eff064dca5ef45a48ab971ccf71586eb9d9.tar.xz
org.eclipse.tcf.agent-ac3f1eff064dca5ef45a48ab971ccf71586eb9d9.zip
TCF Agent: Fixed protocol peer reply trace segfault
-rw-r--r--protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol.c b/protocol.c
index edaf0e88..fdbb376e 100644
--- a/protocol.c
+++ b/protocol.c
@@ -244,7 +244,7 @@ void handle_protocol_message(Protocol * p, Channel * c) {
else if (type[0] == 'R' || type[0] == 'P' || type[0] == 'N') {
Trap trap;
read_stringz(&c->inp, token, sizeof(token));
- trace(LOG_PROTOCOL, "Peer %s: Reply: %c %s ...", type[0], c->peer_name, token);
+ trace(LOG_PROTOCOL, "Peer %s: Reply: %c %s ...", c->peer_name, type[0], token);
if (set_trap(&trap)) {
ReplyHandlerInfo * rh = NULL;
char * endptr = NULL;

Back to the top