aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_spool.c
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-24 10:50:43 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-24 10:50:43 +0000
commit45d29914cc0673c8f88b745d4264688c9f7111bf (patch)
tree28e802469cd243de66f0a19f4f87502194184b71 /pbx/pbx_spool.c
parent5d7fbc4b1e07573ab8e0d91ec21ed1705e630f1a (diff)
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
Diffstat (limited to 'pbx/pbx_spool.c')
-rw-r--r--pbx/pbx_spool.c8
1 files changed, 4 insertions, 4 deletions
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(;;) {