aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--uzbl.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/TODO b/TODO
index 8a6ae1c..509beaf 100644
--- a/TODO
+++ b/TODO
@@ -2,7 +2,6 @@
* Support for binding keyboard shortcuts in config file.
* where to put proxy config? webkit support?
* improve commandline arguments
-* history logging broken. logs always starting url because i made uri const
* check configured commands if they end on .sh so users don't need to prepend /bin/<shell>
SOMEDAY:
diff --git a/uzbl.c b/uzbl.c
index 914828e..1b3b3eb 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -142,7 +142,7 @@ progress_change_cb (WebKitWebView* page, gint progress, gpointer data) {
static void
load_commit_cb (WebKitWebView* page, WebKitWebFrame* frame, gpointer data) {
- const gchar* uri = webkit_web_frame_get_uri(frame);
+ strcpy (uri, webkit_web_frame_get_uri (frame));
}
static void