From 45d29914cc0673c8f88b745d4264688c9f7111bf Mon Sep 17 00:00:00 2001 From: oej Date: Fri, 24 Feb 2006 10:50:43 +0000 Subject: Reverting revision 10998 that was accidentaly committed to trunk. My apologies. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10989 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx/pbx_spool.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pbx/pbx_spool.c') diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c index 21ef3d2f1..a03085ed6 100644 --- a/pbx/pbx_spool.c +++ b/pbx/pbx_spool.c @@ -57,7 +57,7 @@ static char *tdesc = "Outgoing Spool Support"; static char qdir[255]; struct outgoing { - char fn[AST_MAX_FILENAME_LEN]; + char fn[256]; /* Current number of retries */ int retries; /* Maximum number of retries permitted */ @@ -78,8 +78,8 @@ struct outgoing { char data[256]; /* If extension/context/priority */ - char exten[AST_MAX_EXTENSION]; - char context[AST_MAX_CONTEXT]; + char exten[256]; + char context[256]; int priority; /* CallerID Information */ @@ -355,7 +355,7 @@ static void *scan_thread(void *unused) struct stat st; DIR *dir; struct dirent *de; - char fn[AST_MAX_FILENAME_LEN]; + char fn[256]; int res; time_t last = 0, next = 0, now; for(;;) { -- cgit v1.2.3