aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordbailey <dbailey@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-24 22:05:44 +0000
committerdbailey <dbailey@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-24 22:05:44 +0000
commit1a77d75092f3edcf8ccb4724f4fa701b929105ac (patch)
tree59e587bb43c33a082e310a08bfb631fcc496c390
parentab98bd39606d3c1896d5d1df828a03eb81186dd4 (diff)
Blanch the 404 error message for those with no sense of humor
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@144314 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_phoneprov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_phoneprov.c b/res/res_phoneprov.c
index ddb2b4d93..52404b59f 100644
--- a/res/res_phoneprov.c
+++ b/res/res_phoneprov.c
@@ -526,7 +526,7 @@ out404:
*status = 404;
*title = strdup("Not Found");
*contentlength = 0;
- return ast_http_error(404, "Not Found", NULL, "Nothing to see here. Move along.");
+ return ast_http_error(404, "Not Found", NULL, "The requested URL was not found on this server.");
out500:
route = unref_route(route);