summaryrefslogtreecommitdiff
path: root/main/manager.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2018-02-21 12:52:39 -0600
committerRichard Mudgett <rmudgett@digium.com>2018-02-21 12:56:41 -0600
commitf083edc43c243eab9428548c2eb9ab606d841a43 (patch)
treea48512da98755b60b92d4ad445a9af5e88a2dbfd /main/manager.c
parent5458175744ba6503d23315345c5ff2f19dd8e33a (diff)
manager.c: Fix lseek() parameter order.
ASTERISK-27659 Change-Id: I04a2705d2cb7df250769967bc59e2b397a49b797
Diffstat (limited to 'main/manager.c')
-rw-r--r--main/manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/manager.c b/main/manager.c
index 177959ac8..b698702af 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -7672,7 +7672,7 @@ static void process_output(struct mansession *s, struct ast_str **out, struct as
fd = ast_iostream_get_fd(s->stream);
- l = lseek(fd, SEEK_CUR, 0);
+ l = lseek(fd, 0, SEEK_CUR);
if (l > 0) {
if (MAP_FAILED == (buf = mmap(NULL, l, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0))) {
ast_log(LOG_WARNING, "mmap failed. Manager output was not processed\n");
@@ -8174,7 +8174,7 @@ static int auth_http_callback(struct ast_tcptls_session_instance *ser,
m.headers[idx] = NULL;
}
- result_size = lseek(ast_iostream_get_fd(s.stream), SEEK_CUR, 0); /* Calculate approx. size of result */
+ result_size = lseek(ast_iostream_get_fd(s.stream), 0, SEEK_CUR); /* Calculate approx. size of result */
http_header = ast_str_create(80);
out = ast_str_create(result_size * 2 + 512);