Index: pbx_spool.c =================================================================== RCS file: /usr/cvsroot/asterisk/pbx/pbx_spool.c,v retrieving revision 1.8 diff -r1.8 pbx_spool.c 100,101c100,102 < c = strchr(buf, '#'); < if (c) --- > c=buf; > while(c = strchr(c, '#')) { > if ((c== buf) ||(*(c-1) == ' ') || (*(c-1) == '\t')) { 102a104,108 > } else { > c++; > } > > }