diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2020-06-24 00:20:45 +0000 | 
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2020-06-24 00:20:45 +0000 | 
| commit | 3914721463f70500ecc1f59312b122d8788465cf (patch) | |
| tree | f253e72838d762e229ca71912a4a928e96cac2bd /ntpd/ntp_request.c | |
| parent | 5171bc9b11192d9ad273db7854787eaa65eb9997 (diff) | |
Diffstat (limited to 'ntpd/ntp_request.c')
| -rw-r--r-- | ntpd/ntp_request.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ntpd/ntp_request.c b/ntpd/ntp_request.c index bffdec5a9d1dd..e7997a3b90951 100644 --- a/ntpd/ntp_request.c +++ b/ntpd/ntp_request.c @@ -1184,7 +1184,7 @@ mem_stats(  	for (i = 0; i < NTP_HASH_SIZE; i++)  		ms->hashcount[i] = (u_char) -		    max((u_int)peer_hash_count[i], UCHAR_MAX); +		    min((u_int)peer_hash_count[i], UCHAR_MAX);  	(void) more_pkt();  	flush_pkt();  | 
