Fix backwards #if defined.

Left over from some stuff I was fiddling with.

Bug: 11785
Change-Id: Ifb06e8b65db65037b336c46e5e180012ae5b7a59
Reviewed-on: https://code.wireshark.org/review/19487
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-12-31 21:45:51 -08:00
parent a6ce00feb3
commit 4e5408cda9
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ get_zonename(struct tm *tmp)
if ((tmp->tm_isdst != 0) && (tmp->tm_isdst != 1)) {
return "???";
}
# if !defined(HAVE_TZNAME)
# if defined(HAVE_TZNAME)
return tzname[tmp->tm_isdst];
# else
return tmp->tm_isdst ? "?DT" : "?ST";