From: Kevin P. Fleming Date: Tue, 26 Aug 2008 14:09:22 +0000 (+0000) Subject: correct a file location in an error message X-Git-Tag: 1.4.22-rc3~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f0d388eee66211ff7e5ef02187ff71e27a7d3c4;p=thirdparty%2Fasterisk.git correct a file location in an error message git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@140029 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index e650ed291b..360e7169c4 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -9650,7 +9650,7 @@ static int start_pri(struct dahdi_pri *pri) if ((p.sigtype != DAHDI_SIG_HDLCFCS) && (p.sigtype != DAHDI_SIG_HARDHDLC)) { dahdi_close(pri->fds[i]); pri->fds[i] = -1; - ast_log(LOG_ERROR, "D-channel %d is not in HDLC/FCS mode. See /etc/DAHDI.conf\n", x); + ast_log(LOG_ERROR, "D-channel %d is not in HDLC/FCS mode. See /etc/dahdi/system.conf\n", x); return -1; } memset(&si, 0, sizeof(si));