summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/401login.h18
-rw-r--r--desktop/browser.c1
2 files changed, 19 insertions, 0 deletions
diff --git a/desktop/401login.h b/desktop/401login.h
new file mode 100644
index 000000000..f9a999ebd
--- /dev/null
+++ b/desktop/401login.h
@@ -0,0 +1,18 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
+ */
+
+#ifndef NETSURF_DESKTOP_401LOGIN_H
+#define NETSURF_DESKTOP_401LOGIN_H
+
+struct login {
+
+ char *string;
+};
+
+extern struct login LOGIN;
+
+#endif
diff --git a/desktop/browser.c b/desktop/browser.c
index f3b403a80..1eb881f1c 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -363,6 +363,7 @@ void browser_window_callback(content_msg msg, struct content *c,
case CONTENT_MSG_REDIRECT:
bw->loading_content = 0;
+ bw->url = xstrdup(error);
browser_window_set_status(bw, "Redirecting");
/* error actually holds the new URL */
browser_window_open_location(bw, error);