summaryrefslogtreecommitdiff
path: root/src/ne_redirect.c
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2007-07-02 16:17:32 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2007-07-02 16:17:32 +0000
commit474aa33f9d7910778947e527cb7c303387a75524 (patch)
tree649c09175e89b346e6599e10a1670d1bb0487553 /src/ne_redirect.c
parent49300402f9a729468eaa0e07e2181e1354f6272d (diff)
downloadneon-474aa33f9d7910778947e527cb7c303387a75524.tar.gz
* src/ne_request.c, src/ne_redirect.c, src/ne_basic.c: Update error
messages to omit trailing period. git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1175 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src/ne_redirect.c')
-rw-r--r--src/ne_redirect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ne_redirect.c b/src/ne_redirect.c
index 848ebc0..171795b 100644
--- a/src/ne_redirect.c
+++ b/src/ne_redirect.c
@@ -1,6 +1,6 @@
/*
HTTP-redirect support
- Copyright (C) 1999-2005, Joe Orton <joe@manyfish.co.uk>
+ Copyright (C) 1999-2007, Joe Orton <joe@manyfish.co.uk>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@@ -89,7 +89,7 @@ static int post_send(ne_request *req, void *private, const ne_status *status)
/* Parse the Location header */
if (ne_uri_parse(location, &red->uri) || red->uri.path == NULL) {
red->valid = 0;
- ne_set_error(red->sess, _("Could not parse redirect location."));
+ ne_set_error(red->sess, _("Could not parse redirect destination URL"));
ret = NE_ERROR;
} else {
/* got a valid redirect. */