about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cookie.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cookie.c b/cookie.c
index 5712549..7c7c293 100644
--- a/cookie.c
+++ b/cookie.c
@@ -30,8 +30,10 @@ print_cookie(char *msg, SoupCookie *c)
 	if (c == NULL)
 		return;
 
-	if (msg)
+	if (msg) {
 		DNPRINTF(XT_D_COOKIE, "%s\n", msg);
+	}
+
 	DNPRINTF(XT_D_COOKIE, "name     : %s\n", c->name);
 	DNPRINTF(XT_D_COOKIE, "value    : %s\n", c->value);
 	DNPRINTF(XT_D_COOKIE, "domain   : %s\n", c->domain);