Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jan 2014 19:04:53 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r260278 - in stable: 10/sys/netgraph/netflow 7/sys/netgraph/netflow 8/sys/netgraph/netflow 9/sys/netgraph/netflow
Message-ID:  <201401041904.s04J4rmc055422@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sat Jan  4 19:04:53 2014
New Revision: 260278
URL: http://svnweb.freebsd.org/changeset/base/260278

Log:
  MFC r260048:
  
  In sys/netgraph/netflow, use __FBSDID() instead of old-style rcs_id[].

Modified:
  stable/9/sys/netgraph/netflow/netflow.c
  stable/9/sys/netgraph/netflow/netflow_v9.c
  stable/9/sys/netgraph/netflow/ng_netflow.c
Directory Properties:
  stable/9/sys/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/netgraph/netflow/netflow.c
  stable/10/sys/netgraph/netflow/netflow_v9.c
  stable/10/sys/netgraph/netflow/ng_netflow.c
  stable/7/sys/netgraph/netflow/netflow.c
  stable/7/sys/netgraph/netflow/ng_netflow.c
  stable/8/sys/netgraph/netflow/netflow.c
  stable/8/sys/netgraph/netflow/netflow_v9.c
  stable/8/sys/netgraph/netflow/ng_netflow.c
Directory Properties:
  stable/10/   (props changed)
  stable/7/sys/   (props changed)
  stable/8/sys/   (props changed)

Modified: stable/9/sys/netgraph/netflow/netflow.c
==============================================================================
--- stable/9/sys/netgraph/netflow/netflow.c	Sat Jan  4 18:58:18 2014	(r260277)
+++ stable/9/sys/netgraph/netflow/netflow.c	Sat Jan  4 19:04:53 2014	(r260278)
@@ -28,8 +28,8 @@
  * $SourceForge: netflow.c,v 1.41 2004/09/05 11:41:10 glebius Exp $
  */
 
-static const char rcs_id[] =
-    "@(#) $FreeBSD$";
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
 
 #include "opt_inet6.h"
 #include "opt_route.h"

Modified: stable/9/sys/netgraph/netflow/netflow_v9.c
==============================================================================
--- stable/9/sys/netgraph/netflow/netflow_v9.c	Sat Jan  4 18:58:18 2014	(r260277)
+++ stable/9/sys/netgraph/netflow/netflow_v9.c	Sat Jan  4 19:04:53 2014	(r260278)
@@ -26,8 +26,8 @@
  * 	$FreeBSD$
  */
 
-static const char rcs_id[] =
-    "@(#) $FreeBSD$";
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
 
 #include "opt_inet6.h"
 #include "opt_route.h"

Modified: stable/9/sys/netgraph/netflow/ng_netflow.c
==============================================================================
--- stable/9/sys/netgraph/netflow/ng_netflow.c	Sat Jan  4 18:58:18 2014	(r260277)
+++ stable/9/sys/netgraph/netflow/ng_netflow.c	Sat Jan  4 19:04:53 2014	(r260278)
@@ -28,8 +28,8 @@
  * $SourceForge: ng_netflow.c,v 1.30 2004/09/05 11:37:43 glebius Exp $
  */
 
-static const char rcs_id[] =
-    "@(#) $FreeBSD$";
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
 
 #include "opt_inet6.h"
 #include "opt_route.h"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401041904.s04J4rmc055422>