[svn-commits] qwell: branch 1.4 r49032 - /branches/1.4/main/http.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Dec 28 13:40:24 MST 2006


Author: qwell
Date: Thu Dec 28 14:40:23 2006
New Revision: 49032

URL: http://svn.digium.com/view/asterisk?view=rev&rev=49032
Log:
saw this in passing...  fix a small typo

Modified:
    branches/1.4/main/http.c

Modified: branches/1.4/main/http.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/http.c?view=diff&rev=49032&r1=49031&r2=49032
==============================================================================
--- branches/1.4/main/http.c (original)
+++ branches/1.4/main/http.c Thu Dec 28 14:40:23 2006
@@ -359,7 +359,7 @@
 		*status = 302;
 		*title = strdup("Moved Temporarily");
 	} else {
-		c = ast_http_error(404, "Not Found", NULL, "The requested URL was not found on this serer.");
+		c = ast_http_error(404, "Not Found", NULL, "The requested URL was not found on this server.");
 		*status = 404;
 		*title = strdup("Not Found");
 	}



More information about the svn-commits mailing list