From: Automerge script Date: Wed, 8 Aug 2012 21:23:46 +0000 (+0000) Subject: Merged revisions 370924 via svnmerge from X-Git-Tag: 10.9.0-digiumphones-rc1~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dfb7700c44397560f5c6f55bfe9741f95649be6;p=thirdparty%2Fasterisk.git Merged revisions 370924 via svnmerge from file:///srv/subversion/repos/asterisk/branches/10 ................ r370924 | kmoore | 2012-08-08 15:29:16 -0500 (Wed, 08 Aug 2012) | 9 lines Do not define a cause that doesn't actually exist AST_CAUSE_NOTDEFINED is a placeholder for usage when there is no cause information. As such, it should not be defined and translatable as a cause. ........ Merged revisions 370923 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@370948 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/channel.c b/main/channel.c index 40b25fb581..11f135c676 100644 --- a/main/channel.c +++ b/main/channel.c @@ -203,7 +203,6 @@ static const struct { const char *name; const char *desc; } causes[] = { - { AST_CAUSE_NOTDEFINED, "NOTDEFINED", "Cause not defined" }, { AST_CAUSE_UNALLOCATED, "UNALLOCATED", "Unallocated (unassigned) number" }, { AST_CAUSE_NO_ROUTE_TRANSIT_NET, "NO_ROUTE_TRANSIT_NET", "No route to specified transmit network" }, { AST_CAUSE_NO_ROUTE_DESTINATION, "NO_ROUTE_DESTINATION", "No route to destination" },