aboutsummaryrefslogtreecommitdiffstats
path: root/main/cdr.c
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-10 14:55:21 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-10 14:55:21 +0000
commitf96fee046b74121875b4ff806a49e71470940c75 (patch)
treef1f043e1f8fb8c94939cdb502453973fac44c99e /main/cdr.c
parenta4ae0883c23082addad1f53623721ed60dce35ad (diff)
way back in July, in r.75706, a fix was made ot the strftime usages, which was good, but in this case, the check for a nil time was accidentally removed, and now it is restored, to keep timevals like '1969-12-31 17:00:00' from showing up in the cdrs. No idea what databases will do with this. No bugs filed as yet, but it felt like a bug.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@107019 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/cdr.c')
-rw-r--r--main/cdr.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/main/cdr.c b/main/cdr.c
index 183252438..5b68e8fed 100644
--- a/main/cdr.c
+++ b/main/cdr.c
@@ -200,11 +200,13 @@ static void cdr_get_tv(struct timeval tv, const char *fmt, char *buf, int bufsiz
{
if (fmt == NULL) { /* raw mode */
snprintf(buf, bufsize, "%ld.%06ld", (long)tv.tv_sec, (long)tv.tv_usec);
- } else {
- struct ast_tm tm;
-
- ast_localtime(&tv, &tm, NULL);
- ast_strftime(buf, bufsize, fmt, &tm);
+ } else {
+ if (tv.tv_sec) {
+ struct ast_tm tm;
+
+ ast_localtime(&tv, &tm, NULL);
+ ast_strftime(buf, bufsize, fmt, &tm);
+ }
}
}