[asterisk-commits] dbailey: trunk r144314 - /trunk/res/res_phoneprov.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Sep 24 17:05:44 CDT 2008


Author: dbailey
Date: Wed Sep 24 17:05:44 2008
New Revision: 144314

URL: http://svn.digium.com/view/asterisk?view=rev&rev=144314
Log:
Blanch the 404 error message for those with no sense of humor

Modified:
    trunk/res/res_phoneprov.c

Modified: trunk/res/res_phoneprov.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_phoneprov.c?view=diff&rev=144314&r1=144313&r2=144314
==============================================================================
--- trunk/res/res_phoneprov.c (original)
+++ trunk/res/res_phoneprov.c Wed Sep 24 17:05:44 2008
@@ -526,7 +526,7 @@
 	*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);




More information about the asterisk-commits mailing list