From: Luigi Rizzo Date: Sun, 15 Oct 2006 20:37:42 +0000 (+0000) Subject: typo: serer -> server X-Git-Tag: 1.6.0-beta1~3^2~4410 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a3cef21ac68fba2c2167ca1c270364c74e67dc8;p=thirdparty%2Fasterisk.git typo: serer -> server git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@45151 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index d56f098c97..054e859aa9 100644 --- a/main/http.c +++ b/main/http.c @@ -344,7 +344,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"); }