summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cache.c6
-rw-r--r--src/nav.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/cache.c b/src/cache.c
index fcd27a05..078f4bbd 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -932,7 +932,7 @@ static int Cache_redirect(CacheEntry_t *entry, int Flags, BrowserWindow *bw)
(entry->Flags & CA_ForceRedirect || entry->Flags & CA_TempRedirect ||
!entry->Data->len || entry->Data->len < 1024)) {
- _MSG(">>>Redirect from: %s\n to %s\n",
+ _MSG(">>>> Redirect from: %s\n to %s <<<<\n",
URL_STR_(entry->Url), URL_STR_(entry->Location));
_MSG("%s", entry->Header->str);
@@ -946,9 +946,9 @@ static int Cache_redirect(CacheEntry_t *entry, int Flags, BrowserWindow *bw)
} else {
/* Sub entity redirection (most probably an image) */
if (!entry->Data->len) {
- _MSG(">>>Image redirection without entity-content<<<\n");
+ _MSG(">>>> Image redirection without entity-content <<<<\n");
} else {
- _MSG(">>>Image redirection with entity-content<<<\n");
+ _MSG(">>>> Image redirection with entity-content <<<<\n");
}
}
}
diff --git a/src/nav.c b/src/nav.c
index 740bc565..c5311cfb 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -395,7 +395,7 @@ static void Nav_repush_callback(void *data)
void a_Nav_repush(BrowserWindow *bw)
{
dReturn_if_fail (bw != NULL);
- MSG(">>> a_Nav_repush <<<<\n");
+ MSG(">>>> a_Nav_repush <<<<\n");
a_Timeout_add(0.0, Nav_repush_callback, (void*)bw);
}
@@ -424,7 +424,7 @@ static void Nav_redirection0_callback(void *data)
void a_Nav_redirection0(BrowserWindow *bw, const DilloUrl *new_url)
{
dReturn_if_fail (bw != NULL);
- _MSG(">>> a_Nav_redirection0 <<<<\n");
+ _MSG(">>>> a_Nav_redirection0 <<<<\n");
a_Url_free(bw->meta_refresh_url);
bw->meta_refresh_url = a_Url_dup(new_url);