aboutsummaryrefslogtreecommitdiffstats
path: root/cdr/cdr_custom.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 20:40:10 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 20:40:10 +0000
commit0f9cabe4d5959d4b424512d6dc37ab7d7fdc52d2 (patch)
tree6c049156bd48f17ee9c0583ade9bf9039abc6ac6 /cdr/cdr_custom.c
parent926f67f6828f49103b6c204fe6da0641465e4dad (diff)
there is no reason to define our own 'maximum path length' when the POSIX headers already define one for us
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@33351 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'cdr/cdr_custom.c')
-rw-r--r--cdr/cdr_custom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdr/cdr_custom.c b/cdr/cdr_custom.c
index f540e0a6b..5d7152b04 100644
--- a/cdr/cdr_custom.c
+++ b/cdr/cdr_custom.c
@@ -63,7 +63,7 @@ static char *name = "cdr-custom";
static FILE *mf = NULL;
-static char master[AST_CONFIG_MAX_PATH];
+static char master[PATH_MAX];
static char format[1024]="";
static int load_config(int reload)