diff --git a/main/http.c b/main/http.c
index d56f098c97a534df1ab55ce47015800113646a09..054e859aa94d4acafef431a94f60b1e4cee2caf6 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");
 	}