From cb74214fffc7b782f2868a74f834f0b72e0b984f Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 1 Jul 2012 16:18:33 +0200 Subject: Fix invalid print on handshake failure with an unknown code. --- src/handshake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/handshake.c') diff --git a/src/handshake.c b/src/handshake.c index 393fad4..c464896 100644 --- a/src/handshake.c +++ b/src/handshake.c @@ -243,7 +243,7 @@ void fastd_handshake_handle(fastd_context *ctx, const fastd_peer_address *addres const char *error_field_str; if (reply_code >= REPLY_MAX) { - pr_warn(ctx, "Handshake with %I failed with unknown code %I", address, reply_code); + pr_warn(ctx, "Handshake with %I failed with unknown code %i", address, reply_code); goto end_free; } -- cgit v1.2.3