]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a few typos (shown by Lintian)
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>
Fri, 22 Apr 2011 13:59:43 +0000 (13:59 +0000)
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>
Fri, 22 Apr 2011 13:59:43 +0000 (13:59 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@314779 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_unistim.c
res/res_fax_spandsp.c

index 3c307a6820a091aae32b041ca362504de626068e..3908207977ca6e35184ef86a2395ce00900b2cc4 100644 (file)
@@ -1324,7 +1324,7 @@ send_select_output(struct unistimsession *pte, unsigned char output, unsigned ch
                                change_favorite_icon(pte, FAV_ICON_SPEAKER_OFFHOOK_BLACK);
                }
        } else
-               ast_log(LOG_WARNING, "Invalid ouput (%d)\n", output);
+               ast_log(LOG_WARNING, "Invalid output (%d)\n", output);
        if (output != pte->device->output)
                pte->device->previous_output = pte->device->output;
        pte->device->output = output;
index 6b2f103a7464b45580ffa44c872662321ebe83ac..930b957f6dcb8f8bef3c92242ea41a2d9f5ab34d 100644 (file)
@@ -706,7 +706,7 @@ static char *spandsp_fax_cli_show_stats(int fd)
        ast_cli(fd, "%-20.20s : %d\n", "Switched to T.38", spandsp_global_stats.g711.switched);
        ast_cli(fd, "%-20.20s : %d\n", "Call Dropped", spandsp_global_stats.g711.call_dropped);
        ast_cli(fd, "%-20.20s : %d\n", "No FAX", spandsp_global_stats.g711.nofax);
-       ast_cli(fd, "%-20.20s : %d\n", "Negotation Failed", spandsp_global_stats.g711.neg_failed);
+       ast_cli(fd, "%-20.20s : %d\n", "Negotiation Failed", spandsp_global_stats.g711.neg_failed);
        ast_cli(fd, "%-20.20s : %d\n", "Train Failure", spandsp_global_stats.g711.failed_to_train);
        ast_cli(fd, "%-20.20s : %d\n", "Retries Exceeded", spandsp_global_stats.g711.retries_exceeded);
        ast_cli(fd, "%-20.20s : %d\n", "Protocol Error", spandsp_global_stats.g711.protocol_error);
@@ -720,7 +720,7 @@ static char *spandsp_fax_cli_show_stats(int fd)
        ast_cli(fd, "%-20.20s : %d\n", "Success", spandsp_global_stats.t38.success);
        ast_cli(fd, "%-20.20s : %d\n", "Call Dropped", spandsp_global_stats.t38.call_dropped);
        ast_cli(fd, "%-20.20s : %d\n", "No FAX", spandsp_global_stats.t38.nofax);
-       ast_cli(fd, "%-20.20s : %d\n", "Negotation Failed", spandsp_global_stats.t38.neg_failed);
+       ast_cli(fd, "%-20.20s : %d\n", "Negotiation Failed", spandsp_global_stats.t38.neg_failed);
        ast_cli(fd, "%-20.20s : %d\n", "Train Failure", spandsp_global_stats.t38.failed_to_train);
        ast_cli(fd, "%-20.20s : %d\n", "Retries Exceeded", spandsp_global_stats.t38.retries_exceeded);
        ast_cli(fd, "%-20.20s : %d\n", "Protocol Error", spandsp_global_stats.t38.protocol_error);