added some debug output

This commit is contained in:
C-o-r-E 2012-07-27 17:12:15 -04:00
parent 32390d7807
commit 3cade53dad

View File

@ -1481,6 +1481,7 @@ const WINDOWS_TZID_ENTRY WindowsTimeZoneIdTable[] =
char* freerdp_get_unix_timezone_identifier() char* freerdp_get_unix_timezone_identifier()
{ {
printf("Called freerdp_get_unix_timezone_identifier\n");
FILE* fp; FILE* fp;
char* tz_env; char* tz_env;
size_t length; size_t length;
@ -1491,6 +1492,7 @@ char* freerdp_get_unix_timezone_identifier()
if (tz_env != NULL) if (tz_env != NULL)
{ {
tzid = xstrdup(tz_env); tzid = xstrdup(tz_env);
printf("tzid = [%s]\n", tzid);
return tzid; return tzid;
} }
@ -1518,6 +1520,14 @@ char* freerdp_get_unix_timezone_identifier()
fclose(fp) ; fclose(fp) ;
} }
if(tzid == NULL)
{
printf("Unable to detect time zone\n");
}
else
{
printf("tzid = [%s]\n", tzid);
}
return tzid; return tzid;
} }
@ -1601,6 +1611,7 @@ TIME_ZONE_RULE_ENTRY* freerdp_get_current_time_zone_rule(TIME_ZONE_RULE_ENTRY* r
void freerdp_time_zone_detect(TIME_ZONE_INFO* clientTimeZone) void freerdp_time_zone_detect(TIME_ZONE_INFO* clientTimeZone)
{ {
printf("Called time_zone_detect\n");
time_t t; time_t t;
struct tm* local_time; struct tm* local_time;
TIME_ZONE_ENTRY* tz; TIME_ZONE_ENTRY* tz;