From 35f3f86df476682d0a0b84a1f734e854d3606ad9 Mon Sep 17 00:00:00 2001 From: James Golovich Date: Thu, 26 Feb 2004 01:12:38 +0000 Subject: Fix 'show translations' git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2249 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- translate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/translate.c b/translate.c index c29788632..24ed38f79 100755 --- a/translate.c +++ b/translate.c @@ -265,14 +265,14 @@ static int show_translation(int fd, int argc, char *argv[]) strcpy(line, " "); for (y=-1;y= 0 && y >= 0 && tr_matrix[x][y].step) - snprintf(line + strlen(line), sizeof(line) - strlen(line), " %5d", tr_matrix[x][y].cost); + snprintf(line + strlen(line), sizeof(line) - strlen(line), " %5d", tr_matrix[x][y].cost >= 99999 ? tr_matrix[x][y].cost-99999 : tr_matrix[x][y].cost); else if (((x == -1 && y >= 0) || (y == -1 && x >= 0))) { snprintf(line + strlen(line), sizeof(line) - strlen(line), " %5s", ast_getformatname(1<<(x+y+1)) ); - } else if (x != -1 && y != -1 && y != 4) { + } else if (x != -1 && y != -1) { snprintf(line + strlen(line), sizeof(line) - strlen(line), " -"); - } else if (y != 4) { + } else { snprintf(line + strlen(line), sizeof(line) - strlen(line), " "); } } -- cgit v1.2.3