From 3b5d63fd2b323c5b10daec876bd85d032d88177c Mon Sep 17 00:00:00 2001 From: Matthew Nicholson Date: Wed, 21 Jul 2010 15:54:29 +0000 Subject: [PATCH] Properly show the current page being transfered for 'fax show session' git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@278462 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_fax_spandsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/res_fax_spandsp.c b/res/res_fax_spandsp.c index 3faf722673..6b2f103a74 100644 --- a/res/res_fax_spandsp.c +++ b/res/res_fax_spandsp.c @@ -675,9 +675,9 @@ static char *spandsp_fax_cli_show_session(struct ast_fax_session *s, int fd) ast_cli(fd, "%-22s : %d\n", "Data Rate", stats.bit_rate); ast_cli(fd, "%-22s : %dx%d\n", "Image Resolution", stats.x_resolution, stats.y_resolution); #if SPANDSP_RELEASE_DATE >= 20090220 - ast_cli(fd, "%-22s : %d\n", "Page Number", (s->details->caps & AST_FAX_TECH_RECEIVE) ? stats.pages_rx : stats.pages_tx); + ast_cli(fd, "%-22s : %d\n", "Page Number", ((s->details->caps & AST_FAX_TECH_RECEIVE) ? stats.pages_rx : stats.pages_tx) + 1); #else - ast_cli(fd, "%-22s : %d\n", "Page Number", stats.pages_transferred); + ast_cli(fd, "%-22s : %d\n", "Page Number", stats.pages_transferred + 1); #endif ast_cli(fd, "%-22s : %s\n", "File Name", s->details->caps & AST_FAX_TECH_RECEIVE ? p->t30_state->rx_file : p->t30_state->tx_file);