From 13c82a2b30a7d2d659680a2fe735ed3a449cc83b Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Wed, 8 Aug 2012 20:28:40 +0000 Subject: [PATCH] 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. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@370923 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/channel.c | 1 - 1 file changed, 1 deletion(-) diff --git a/main/channel.c b/main/channel.c index 80246a6b4d..2a8634bf64 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" }, -- 2.47.3