aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/callbacks.c
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2010-11-29 17:55:07 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2010-11-29 17:55:07 -0700
commit0faed45023a73e446f606871b2480a317e4d8d2d (patch)
tree3264e4e4f02fdef560c43320f02c8613d0b07912 /src/callbacks.c
parente211c19ca4729ad498a58ca6bbdf6b5ce9ef22ea (diff)
$UZBL_URL -> $UZBL_URI (for consistency with the rest of our interface)
Diffstat (limited to 'src/callbacks.c')
-rw-r--r--src/callbacks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callbacks.c b/src/callbacks.c
index 2637810..4f0e4ac 100644
--- a/src/callbacks.c
+++ b/src/callbacks.c
@@ -437,7 +437,7 @@ load_status_change_cb (WebKitWebView* web_view, GParamSpec param_spec) {
g_free (uzbl.state.uri);
GString* newuri = g_string_new (webkit_web_frame_get_uri (frame));
uzbl.state.uri = g_string_free (newuri, FALSE);
- g_setenv("UZBL_URL", uzbl.state.uri, TRUE);
+ g_setenv("UZBL_URI", uzbl.state.uri, TRUE);
send_event(LOAD_COMMIT, webkit_web_frame_get_uri (frame), NULL);
break;