[Git][NTPsec/ntpsec][master] ntptime: fix jfmt5/ofmt5 jfmt6/ofmt6 related compile failure
Matt Selsky (@selsky)
gitlab at mg.gitlab.com
Fri Dec 31 17:47:57 UTC 2021
Matt Selsky pushed to branch master at NTPsec / ntpsec
Commits:
0bea0bef by Peter Seiderer at 2021-12-31T09:27:00+01:00
ntptime: fix jfmt5/ofmt5 jfmt6/ofmt6 related compile failure
Use same define guard for definiton as for usage ('HAVE_STRUCT_NTPTIMEVAL_TAI'
instead of 'NTP_API && NTP_API > 3').
While at it use HAVE_STRUCT_NTPTIMEVAL_TAI define guard for the two remaining
places using NTP_API (which is not defined by the uclibc sys/timex.h header).
Fixes:
../../ntptime/ntptime.c: In function ‘main’:
../../ntptime/ntptime.c:349:17: error: ‘jfmt5’ undeclared (first use in this function); did you mean ‘jfmt6’?
349 | printf(json ? jfmt5 : ofmt5, (long)ntv.tai);
| ^~~~~
| jfmt6
../../ntptime/ntptime.c:349:17: note: each undeclared identifier is reported only once for each function it appears in
../../ntptime/ntptime.c:349:25: error: ‘ofmt5’ undeclared (first use in this function); did you mean ‘ofmt6’?
349 | printf(json ? jfmt5 : ofmt5, (long)ntv.tai);
| ^~~~~
| ofmt6
../../ntptime/ntptime.c:321:15: warning: unused variable ‘jfmt6’ [-Wunused-variable]
321 | const char *jfmt6 = "";
| ^~~~~
../../ntptime/ntptime.c:311:15: warning: unused variable ‘ofmt6’ [-Wunused-variable]
311 | const char *ofmt6 = "\n";
| ^~~~~
Signed-off-by: Peter Seiderer <ps.report at gmx.net>
---
Changes v1 -> v2:
- fix endif comment (NTP_API vs. HAVE_STRUCT_NTPTIMEVAL_TAI)
- use HAVE_STRUCT_NTPTIMEVAL_TAI define guard for the two remaining
places using NTP_API (which is not defined by the uclibc sys/timex.h
header)
- - - - -
1 changed file:
- ntptime/ntptime.c
Changes:
=====================================
ntptime/ntptime.c
=====================================
@@ -138,7 +138,7 @@ main(
ntx.modes |= MOD_NANO;
break;
#endif
-#if defined NTP_API && NTP_API > 3
+#if defined(HAVE_STRUCT_NTPTIMEVAL_TAI)
case 'T':
ntx.modes = MOD_TAI;
ntx.constant = atoi(ntp_optarg);
@@ -222,7 +222,7 @@ main(
#else
"",
#endif
-#if defined NTP_API && NTP_API > 3
+#if defined(HAVE_STRUCT_NTPTIMEVAL_TAI)
"-T tai_offset set TAI offset\n",
#else
"",
@@ -305,21 +305,21 @@ main(
const char *ofmt2 = " time %s, (.%0*d),\n";
const char *ofmt3 = " maximum error %lu us, estimated error %lu us";
const char *ofmt4 = " ntptime=%x.%x unixtime=%x.%0*d %s";
-#if defined NTP_API && NTP_API > 3
+#if defined(HAVE_STRUCT_NTPTIMEVAL_TAI)
const char *ofmt5 = ", TAI offset %ld\n";
#else
const char *ofmt6 = "\n";
-#endif /* NTP_API */
+#endif /* HAVE_STRUCT_NTPTIMEVAL_TAI */
/* JSON formats */
const char *jfmt1 = "{\"gettime-code\":%d,\"gettime-status\":\"%s\",";
const char *jfmt2 = "\"time\":\"%s\",\"fractional-time\":\".%0*d\",";
const char *jfmt3 = "\"maximum-error\":%lu,\"estimated-error\":%lu,";
const char *jfmt4 = "\"raw-ntp-time\":\"%x.%x\",\"raw-unix-time\":\"%x.%0*d %s\",";
-#if defined NTP_API && NTP_API > 3
+#if defined(HAVE_STRUCT_NTPTIMEVAL_TAI)
const char *jfmt5 = "\"TAI-offset\":%d,";
#else
const char *jfmt6 = "";
-#endif /* NTP_API */
+#endif /* HAVE_STRUCT_NTPTIMEVAL_TAI */
printf(json ? jfmt1 : ofmt1, status, timex_state(status));
time_frac = ntv.time.tv_frac_sec;
#ifdef STA_NANO
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/-/commit/0bea0bef36ff9cfa3ff52de25a839c283cf46cf7
--
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/-/commit/0bea0bef36ff9cfa3ff52de25a839c283cf46cf7
You're receiving this email because of your account on gitlab.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ntpsec.org/pipermail/vc/attachments/20211231/cfc15290/attachment-0001.htm>
More information about the vc
mailing list