diff options
author | Alexander Guy <alexander@cvs.openbsd.org> | 2004-07-10 22:04:23 +0000 |
---|---|---|
committer | Alexander Guy <alexander@cvs.openbsd.org> | 2004-07-10 22:04:23 +0000 |
commit | 746f89e525345c5acba71424e1175af4d1e2b5a8 (patch) | |
tree | 96787693e96f876c5a05081529ba92e6de588b45 /usr.sbin/ntpd/ntp.h | |
parent | 3f2f30fb501541c85ed825e301e3363544f81ac5 (diff) |
correct leap indicator mask; ok henning@
Diffstat (limited to 'usr.sbin/ntpd/ntp.h')
-rw-r--r-- | usr.sbin/ntpd/ntp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/ntp.h b/usr.sbin/ntpd/ntp.h index 61578f84c8b..b01296185aa 100644 --- a/usr.sbin/ntpd/ntp.h +++ b/usr.sbin/ntpd/ntp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.h,v 1.7 2004/07/04 22:24:20 henning Exp $ */ +/* $OpenBSD: ntp.h,v 1.8 2004/07/10 22:04:22 alexander Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -128,7 +128,7 @@ struct ntp_query { */ #define MODEMASK (7 << 0) #define VERSIONMASK (7 << 3) -#define LIMASK (2 << 6) +#define LIMASK (3 << 6) /* * Mode values |