summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-10-06 20:34:11 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-10-06 20:34:11 +0000
commit35cada23f0087e6a0ee30f02366860c7c68154ca (patch)
tree2d5f884c856d02b08efd97310bd87e81e8ab4425
parentacd10739092cb0e1160733615aa24ddcd5fb87f1 (diff)
s cannot be null here, so remove the useless test and error-handling block.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44617 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/manager.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/main/manager.c b/main/manager.c
index 0a6b098e5..f9fdca8d6 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -2438,7 +2438,7 @@ static char *generic_http_callback(int format, struct sockaddr_in *requestor, co
ast_mutex_unlock(&s->__lock);
memset(&m, 0, sizeof(m));
- if (s) {
+ {
char tmp[80];
ast_build_string(&c, &len, "Content-type: text/%s\r\n", contenttype[format]);
sprintf(tmp, "%08lx", s->managerid);
@@ -2496,9 +2496,6 @@ static char *generic_http_callback(int format, struct sockaddr_in *requestor, co
ast_build_string(&c, &len, "</ajax-response>\n");
} else if (format == FORMAT_HTML)
ast_build_string(&c, &len, "</table></body>\r\n");
- } else {
- *status = 500;
- *title = strdup("Server Error");
}
ast_mutex_lock(&s->__lock);
if (s->needdestroy) {