diff options
author | 2006-03-14 22:56:20 +0000 | |
---|---|---|
committer | 2006-03-14 22:56:20 +0000 | |
commit | 7ad2fb6c8be3fdfd950cf69ebb22fb90722fc0c7 (patch) | |
tree | d2ff69b280374e09f78b2eb06796508e3450c22f | |
parent | spamd can show the wrong IP address to clients in a %A message because (diff) | |
download | wireguard-openbsd-7ad2fb6c8be3fdfd950cf69ebb22fb90722fc0c7.tar.xz wireguard-openbsd-7ad2fb6c8be3fdfd950cf69ebb22fb90722fc0c7.zip |
#ifdef DEBUG not #if DEBUG
-rw-r--r-- | usr.sbin/rdate/ntp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rdate/ntp.c b/usr.sbin/rdate/ntp.c index 04a8d3b7be5..46b11f512a4 100644 --- a/usr.sbin/rdate/ntp.c +++ b/usr.sbin/rdate/ntp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntp.c,v 1.27 2004/10/26 09:48:59 henning Exp $ */ +/* $OpenBSD: ntp.c,v 1.28 2006/03/14 22:56:20 deraadt Exp $ */ /* * Copyright (c) 1996, 1997 by N.M. Maclaren. All rights reserved. @@ -113,7 +113,7 @@ void unpack_ntp(struct ntp_data *, u_char *); double current_time(double); void create_timeval(double, struct timeval *, struct timeval *); -#if DEBUG +#ifdef DEBUG void print_packet(const struct ntp_data *); #endif |