diff --git a/app.c b/app.c index cce0cbeec3af376876cc02fda15fff2f6b98877a..93273b1a739008f4144ada140115671b9c293bb3 100755 --- a/app.c +++ b/app.c @@ -271,7 +271,7 @@ int ast_dtmf_stream(struct ast_channel *chan,struct ast_channel *peer,char *digi if (!res) { res = ast_waitfor(chan,100); if (res > -1) { - for (ptr=digits;*ptr;*ptr++) { + for (ptr=digits; *ptr; ptr++) { if (*ptr == 'w') { res = ast_safe_sleep(chan, 500); if (res) diff --git a/apps/app_controlplayback.c b/apps/app_controlplayback.c index bf56dcaa265cfd8d1c848a13d890fee80e778bd7..02a1cd384e37c36fe75c4f70af4e075661660db5 100755 --- a/apps/app_controlplayback.c +++ b/apps/app_controlplayback.c @@ -65,24 +65,19 @@ static int controlplayback_exec(struct ast_channel *chan, void *data) file = tmp; if ((skip=strchr(tmp,'|'))) { - *skip = '\0'; - *skip++; + *skip++ = '\0'; fwd=strchr(skip,'|'); if (fwd) { - *fwd = '\0'; - *fwd++; + *fwd++ = '\0'; rev = strchr(fwd,'|'); if (rev) { - *rev = '\0'; - *rev++; + *rev++ = '\0'; stop = strchr(rev,'|'); if (stop) { - *stop = '\0'; - *stop++; + *stop++ = '\0'; pause = strchr(stop,'|'); if (pause) { - *pause = '\0'; - *pause++; + *pause++ = '\0'; } } } diff --git a/apps/app_dictate.c b/apps/app_dictate.c index b88fbf2c3a2a3ed72b83881d27210ed347f6e0f8..97efef19cf173a0afc933a49eb2365a10f8c7523 100755 --- a/apps/app_dictate.c +++ b/apps/app_dictate.c @@ -16,7 +16,7 @@ #include <stdlib.h> #include <unistd.h> #include <string.h> - +#include <sys/stat.h> /* for mkdir */ #include "asterisk/file.h" #include "asterisk/logger.h" #include "asterisk/channel.h" diff --git a/apps/app_flash.c b/apps/app_flash.c index 9c8e8dbec2f7a05a768afed175980f57c39a4a7e..7514ef0bf7b1ad73e4239450e0d2057a4bc43be4 100755 --- a/apps/app_flash.c +++ b/apps/app_flash.c @@ -11,6 +11,9 @@ * the GNU General Public License */ +#include <string.h> +#include <errno.h> +#include <stdlib.h> #include "asterisk/lock.h" #include "asterisk/file.h" #include "asterisk/logger.h" @@ -26,9 +29,6 @@ #else #include <zaptel.h> #endif /* __linux__ */ -#include <string.h> -#include <errno.h> -#include <stdlib.h> static char *tdesc = "Flash zap trunk application"; diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 758429c698f104376867feb79b72062deb51d958..bb3e37a90d54a45f3cc5fdebe9942391697c60ea 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -267,6 +267,8 @@ static struct ast_channel inuse = { "GR-303InUse" }; #ifdef PRI_GETSET_TIMERS static int pritimers[PRI_MAX_TIMERS]; #endif +static int pridebugfd = -1; +static char pridebugfilename[1024]=""; #endif /* Wait up to 16 seconds for first digit (FXO logic) */ @@ -288,8 +290,6 @@ AST_MUTEX_DEFINE_STATIC(iflock); static int ifcount = 0; AST_MUTEX_DEFINE_STATIC(pridebugfdlock); -static int pridebugfd = -1; -static char pridebugfilename[1024]=""; /* Whether we answer on a Polarity Switch event */ static int answeronpolarityswitch = 0; diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 1851b4a74487ed97653bf465694e5fc1415d1a56..cb21253875ccbf00f81e55f7b6f0feeda1ae89e6 100755 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -119,7 +119,7 @@ static void dump_datetime(char *output, int maxlen, void *value, int len) tm.tm_mday = (val >> 16) & 0x1f; tm.tm_mon = ((val >> 21) & 0x0f) - 1; tm.tm_year = ((val >> 25) & 0x7f) + 100; - strftime(output, maxlen, "%F %T", &tm); + strftime(output, maxlen, "%Y-%m-%d %T", &tm); } else ast_copy_string(output, "Invalid DATETIME format!", maxlen); } diff --git a/config.c b/config.c index 6a86b6ea1929ae34abb009ff1b85efc76ff32b87..b3756699107d30fd480e9afe460b5256ec343967 100755 --- a/config.c +++ b/config.c @@ -486,7 +486,7 @@ static int process_text_line(struct ast_config *cfg, struct ast_category **cat, /* #exec </path/to/executable> We create a tmp file, then we #include it, then we delete it. */ if (do_exec) { - snprintf(exec_file, sizeof(exec_file), "/var/tmp/exec.%ld.%ld", time(NULL), pthread_self()); + snprintf(exec_file, sizeof(exec_file), "/var/tmp/exec.%ld.%ld", time(NULL), (long)pthread_self()); snprintf(cmd, sizeof(cmd), "%s > %s 2>&1", cur, exec_file); ast_safe_system(cmd); cur = exec_file;