From 1cdacf8ae5834c2705ff0e1e021d42dd624ed19e Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 15 Aug 2018 08:18:12 +0100 Subject: Atari: Fix http auth logging. --- frontends/atari/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c index 14e02e5f8..498cf5a97 100644 --- a/frontends/atari/gui.c +++ b/frontends/atari/gui.c @@ -779,8 +779,8 @@ static void gui_401login_open(nsurl *url, const char *realm, bres = login_form_do(url, (char*)realm, &u_out, &p_out); if (bres) { - NSLOG(netsurf, INFO, "url: %s, realm: %s, auth: %s\n", - nsurl_access(url), realm, out); + NSLOG(netsurf, INFO, "url: %s, realm: %s, auth: %s:%s\n", + nsurl_access(url), realm, u_out, p_out); } if (cb != NULL) { cb(u_out, p_out, cbpw); -- cgit v1.2.3