summaryrefslogtreecommitdiff
path: root/wiretap/k12text.l
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-11-16 17:13:37 +0000
committerGuy Harris <guy@alum.mit.edu>2011-11-16 17:13:37 +0000
commit234d0b96149301f662680b4143eb3e63de0dcdcb (patch)
tree71770f761f72e2ee5fd0c5e68feecfd588741a78 /wiretap/k12text.l
parent8be474f7764b70c90e6d0ad77d48999206c1f0f5 (diff)
downloadwireshark-234d0b96149301f662680b4143eb3e63de0dcdcb.tar.gz
OK, this should do it.
svn path=/trunk/; revision=39885
Diffstat (limited to 'wiretap/k12text.l')
-rw-r--r--wiretap/k12text.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/k12text.l b/wiretap/k12text.l
index 64a693cd69..541441556a 100644
--- a/wiretap/k12text.l
+++ b/wiretap/k12text.l
@@ -371,7 +371,7 @@ k12text_dump(wtap_dumper *wdh _U_, const struct wtap_pkthdr *phdr,
/* calling gmtime() on MSVC 2005 with huge values causes it to crash */
/* XXX - find the exact value that still does work */
/* XXX - using _USE_32BIT_TIME_T might be another way to circumvent this problem */
- if (phdr->ts_secs > 2000000000)
+ if (phdr->ts.secs > 2000000000)
g_snprintf(p, 90, "+---------+---------------+----------+\r\nXX:XX:XX,");
else
#endif