summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_zap.c4
-rwxr-xr-xchannels/iax2-parser.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 758429c69..bb3e37a90 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 1851b4a74..cb2125387 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);
}