Home
last modified time | relevance | path

Searched refs:now_broken (Results 1 – 2 of 2) sorted by relevance

/dports/security/gvm-libs/gvm-libs-21.4.3/util/
H A Dfileutils.c290 struct tm now_broken; in gvm_export_file_name() local
306 if (localtime_r (&now, &now_broken) == NULL) in gvm_export_file_name()
310 now_date_str = g_strdup_printf ("%04d%02d%02d", (now_broken.tm_year + 1900), in gvm_export_file_name()
311 (now_broken.tm_mon + 1), now_broken.tm_mday); in gvm_export_file_name()
312 now_time_str = g_strdup_printf ("%02d%02d%02d", now_broken.tm_hour, in gvm_export_file_name()
313 now_broken.tm_min, now_broken.tm_sec); in gvm_export_file_name()
/dports/security/gvmd/gvmd-21.4.4/src/
H A Dmanage_utils.c66 struct tm now_broken; in current_offset() local
86 if (localtime_r (&now, &now_broken) == NULL) in current_offset()
103 offset = - (now - mktime (&now_broken)); in current_offset()