mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
ntp: Fix build
Two files used to obtain time from reference clocks did not include ntp_types.h resulting in an undefined NONEMPTY_TRANSLATION_UNIT. Fixes:e6bfd18d21MFC after: 3 days X-MFC-with:e6bfd18d21
This commit is contained in:
parent
e6bfd18d21
commit
82aa1470c9
2 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,8 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <ntp_types.h>
|
||||
|
||||
#if defined(REFCLOCK) && defined(CLOCK_PARSE) && defined(CLOCK_HOPF6021)
|
||||
|
||||
#include "ntp_fp.h"
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <ntp_types.h>
|
||||
|
||||
#if defined(REFCLOCK) && defined(CLOCK_PARSE) && defined(CLOCK_WHARTON_400A)
|
||||
/*
|
||||
* Support for WHARTON 400A Series clock + 404.2 serial interface.
|
||||
|
|
|
|||
Loading…
Reference in a new issue