diff options
author | Kenjiro Cho <kjc@cvs.openbsd.org> | 2002-02-13 08:07:58 +0000 |
---|---|---|
committer | Kenjiro Cho <kjc@cvs.openbsd.org> | 2002-02-13 08:07:58 +0000 |
commit | 0f6c15eb653cc859ddd8c338b02499a7a33babb5 (patch) | |
tree | 3d422b2a35a0cfc7c8e4fb3df3c0eae202f0eabb | |
parent | bab5fb456d0ccdc78b1915ae1f6496f4ea5486b7 (diff) |
sync with KAME.
comment out the warning message for the clock going backwards
in the TV_DELTA macro.
it happens when the clock is adjusted and gives me more trouble
than help.
-rw-r--r-- | sys/altq/altq_rmclass.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/altq/altq_rmclass.h b/sys/altq/altq_rmclass.h index 11c2bef4b71..cb171c67064 100644 --- a/sys/altq/altq_rmclass.h +++ b/sys/altq/altq_rmclass.h @@ -1,4 +1,4 @@ -/* $OpenBSD: altq_rmclass.h,v 1.1 2001/06/27 05:28:36 kjc Exp $ */ +/* $OpenBSD: altq_rmclass.h,v 1.2 2002/02/13 08:07:57 kjc Exp $ */ /* $KAME: altq_rmclass.h,v 1.6 2000/12/09 09:22:44 kjc Exp $ */ /* @@ -81,8 +81,8 @@ struct red; if ((xxs = (a)->tv_sec - (b)->tv_sec)) { \ switch (xxs) { \ default: \ - if (xxs < 0) \ - printf("rm_class: bogus time values\n"); \ + /* if (xxs < 0) \ + printf("rm_class: bogus time values\n"); */ \ delta = 0; \ /* fall through */ \ case 2: \ |