From: Tilghman Lesher Date: Thu, 7 Aug 2008 15:10:53 +0000 (+0000) Subject: Fix runtime symbol error X-Git-Tag: 1.6.2.0-beta1~1485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83972093166956bb4e6f0991fc5f36b085415b82;p=thirdparty%2Fasterisk.git Fix runtime symbol error git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@136406 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/cdr/cdr_tds.c b/cdr/cdr_tds.c index 750895d0ec..2046f89cd1 100644 --- a/cdr/cdr_tds.c +++ b/cdr/cdr_tds.c @@ -268,7 +268,7 @@ static char *anti_injection(const char *str, int len) static void get_date(char *dateField, size_t len, struct timeval when) { /* To make sure we have date variable if not insert null to SQL */ - if (!ast_tvzero(tv)) { + if (!ast_tvzero(when)) { struct ast_tm tm; ast_localtime(&when, &tm, NULL); ast_strftime(dateField, len, "'" DATE_FORMAT "'", &tm);