From: Kevin P. Fleming Date: Thu, 4 Oct 2007 21:36:56 +0000 (+0000) Subject: callers of sig2str already add the word 'signalling' in the appropriate place, so... X-Git-Tag: 1.4.12.1~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=544904070f365c35f61a202bef062d6f1d434da8;p=thirdparty%2Fasterisk.git callers of sig2str already add the word 'signalling' in the appropriate place, so don't duplicate it git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@84690 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index dd4d13a18a..f490c047ad 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -1193,23 +1193,23 @@ static char *zap_sig2str(int sig) case SIG_FXOKS: return "FXO Kewlstart"; case SIG_PRI: - return "PRI Signalling"; + return "ISDN PRI"; case SIG_SF: - return "SF (Tone) Signalling Immediate"; + return "SF (Tone) Immediate"; case SIG_SFWINK: - return "SF (Tone) Signalling Wink"; + return "SF (Tone) Wink"; case SIG_SF_FEATD: - return "SF (Tone) Signalling with Feature Group D (DTMF)"; + return "SF (Tone) with Feature Group D (DTMF)"; case SIG_SF_FEATDMF: - return "SF (Tone) Signalling with Feature Group D (MF)"; + return "SF (Tone) with Feature Group D (MF)"; case SIG_SF_FEATB: - return "SF (Tone) Signalling with Feature Group B (MF)"; + return "SF (Tone) with Feature Group B (MF)"; case SIG_GR303FXOKS: - return "GR-303 Signalling with FXOKS"; + return "GR-303 with FXOKS"; case SIG_GR303FXSKS: - return "GR-303 Signalling with FXSKS"; + return "GR-303 with FXSKS"; case 0: - return "Pseudo Signalling"; + return "Pseudo"; default: snprintf(buf, sizeof(buf), "Unknown signalling %d", sig); return buf;