diff options
author | Tobias Brunner <tobias@strongswan.org> | 2015-10-07 16:25:05 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2015-11-10 12:13:06 +0100 |
commit | ebeb8c87c5669fa2cd2d2e580e5c731e9d4cc922 (patch) | |
tree | 42538160de09e6b35a3f03c1cafdc933b8336589 /src/libcharon/plugins/error_notify | |
parent | c2967484a0d44a1cb4e4aa323a31a7a48c5b8a03 (diff) | |
download | strongswan-ebeb8c87c5669fa2cd2d2e580e5c731e9d4cc922.tar.bz2 strongswan-ebeb8c87c5669fa2cd2d2e580e5c731e9d4cc922.tar.xz |
traffic-selector: Don't end printf'ed list of traffic selectors with a space
Diffstat (limited to 'src/libcharon/plugins/error_notify')
-rw-r--r-- | src/libcharon/plugins/error_notify/error_notify_listener.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/error_notify/error_notify_listener.c b/src/libcharon/plugins/error_notify/error_notify_listener.c index f7a1f49ec..ce577c62c 100644 --- a/src/libcharon/plugins/error_notify/error_notify_listener.c +++ b/src/libcharon/plugins/error_notify/error_notify_listener.c @@ -110,7 +110,7 @@ METHOD(listener_t, alert, bool, list = va_arg(args, linked_list_t*); list2 = va_arg(args, linked_list_t*); snprintf(msg.str, sizeof(msg.str), "the received traffic selectors " - "did not match: %#R=== %#R", list, list2); + "did not match: %#R === %#R", list, list2); break; case ALERT_INSTALL_CHILD_SA_FAILED: msg.type = htonl(ERROR_NOTIFY_INSTALL_CHILD_SA_FAILED); |