summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2012-11-23 12:12:06 +0000
committerHiroki Sato <hrs@FreeBSD.org>2012-11-23 12:12:06 +0000
commitb91dc775066a15a520f51919bf31f121c044c365 (patch)
treeaa3ee456522c5551c6e66a60deb8adce3f70e11c
parenta038519e19f14648ae6fbfe6467bf99ee613b9d0 (diff)
downloadsrc-test2-b91dc775066a15a520f51919bf31f121c044c365.tar.gz
src-test2-b91dc775066a15a520f51919bf31f121c044c365.zip
Notes
-rw-r--r--UPDATING8
-rw-r--r--sys/sys/param.h2
2 files changed, 9 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index 6c324ba6b01c..4ee09f2ebb3f 100644
--- a/UPDATING
+++ b/UPDATING
@@ -24,6 +24,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10.x IS SLOW:
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20121117:
+ The sin6_scope_id member variable in struct sockaddr_in6 is now
+ filled by the kernel before passing the structure to the userland via
+ sysctl or routing socket. This means the KAME-specific embedded scope
+ id in sin6_addr.s6_addr[2] is always cleared in userland application.
+ This behavior can be controlled by net.inet6.ip6.deembed_scopeid.
+ __FreeBSD_version is bumped to 1000025.
+
20121105:
On i386 and amd64 systems WITH_CLANG_IS_CC is now the default.
This means that the world and kernel will be compiled with clang
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 1ff52c12db0d..d7a74f265f50 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -58,7 +58,7 @@
* in the range 5 to 9.
*/
#undef __FreeBSD_version
-#define __FreeBSD_version 1000024 /* Master, propagated to newvers */
+#define __FreeBSD_version 1000025 /* Master, propagated to newvers */
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,