From: Jason Parker Date: Thu, 28 Dec 2006 20:40:23 +0000 (+0000) Subject: saw this in passing... fix a small typo X-Git-Tag: 1.4.1~364 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c38c990bc7420fcc6ffe86e4536924c4efc7b639;p=thirdparty%2Fasterisk.git saw this in passing... fix a small typo git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@49032 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index cc4cfa4583..67341e8a75 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"); }