diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-12 05:01:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-12 05:01:24 +0000 |
commit | 15d5aecc5b2123bab1a374d36420f5752096d081 (patch) | |
tree | 5300829fb1e869c2ace0b1b5b8bfc68faaa98472 /cmdparse.h | |
parent | Releasing progress-linux version 4.5-3~progress7.99u1. (diff) | |
download | chrony-15d5aecc5b2123bab1a374d36420f5752096d081.tar.xz chrony-15d5aecc5b2123bab1a374d36420f5752096d081.zip |
Merging upstream version 4.6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | cmdparse.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,6 +32,7 @@ typedef struct { char *name; + int family; int port; SourceParameters params; } CPS_NTP_Source; @@ -46,7 +47,7 @@ extern int CPS_GetSelectOption(char *option); extern int CPS_ParseAllowDeny(char *line, int *all, IPAddr *ip, int *subnet_bits); /* Parse a command to enable local reference */ -extern int CPS_ParseLocal(char *line, int *stratum, int *orphan, double *distance); +extern int CPS_ParseLocal(char *line, int *stratum, int *orphan, double *distance, double *activate); /* Remove extra white-space and comments */ extern void CPS_NormalizeLine(char *line); |