Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys remove timestamping diff that should have not been c...



details:   https://anonhg.NetBSD.org/src/rev/30150e00b869
branches:  trunk
changeset: 321448:30150e00b869
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Mar 16 17:35:13 2018 +0000

description:
remove timestamping diff that should have not been committed.

diffstat:

 sys/sys/socketvar.h |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (21 lines):

diff -r 226de9935f00 -r 30150e00b869 sys/sys/socketvar.h
--- a/sys/sys/socketvar.h       Fri Mar 16 17:25:04 2018 +0000
+++ b/sys/sys/socketvar.h       Fri Mar 16 17:35:13 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: socketvar.h,v 1.147 2018/03/16 17:25:04 christos Exp $ */
+/*     $NetBSD: socketvar.h,v 1.148 2018/03/16 17:35:13 christos Exp $ */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -253,9 +253,8 @@
 
 struct mbuf *getsombuf(struct socket *, int);
 
-#define SOOPT_TIMESTAMP(o)                             \
-    ((o) & (SO_TIMESTAMP | 0x400 /*SO_OTIMESTAMP*/ |   \
-    SO_TIMESTAMPNS | SO_TIMESTAMPING))
+/* 0x400 is SO_OTIMESTAMP */
+#define SOOPT_TIMESTAMP(o)     ((o) & (SO_TIMESTAMP | 0x400))
 
 /*
  * File operations on sockets.



Home | Main Index | Thread Index | Old Index