aboutsummaryrefslogtreecommitdiffstats
path: root/main/http.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-28 20:40:23 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-28 20:40:23 +0000
commitb453efdfa4f5700eb1cdb406036d70533622a949 (patch)
treef1825aa5e844137cb74dc922eef1117f43546b71 /main/http.c
parent5446ae0df2730f164be5eafb762ed09b9020543f (diff)
saw this in passing... fix a small typo
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@49032 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/http.c')
-rw-r--r--main/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/http.c b/main/http.c
index cc4cfa458..67341e8a7 100644
--- a/main/http.c
+++ b/main/http.c
@@ -359,7 +359,7 @@ static char *handle_uri(struct sockaddr_in *sin, char *uri, int *status, char **
*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");
}