aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/nscd
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 05:45:17 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 05:45:17 +0000
commita9c219fa3cec18ef9f30edec6fa106bf0e2d423d (patch)
tree50188ea5c781ddc35338e77f24e94f1aa22aae1c /usr.sbin/nscd
parentba209d619d07461cc752dcdd596ab0d9b50e847a (diff)
This commit was manufactured by cvs2svn to create tagrelease/7.0.0_cvs
'RELENG_7_0_0_RELEASE'. This commit was manufactured to restore the state of the 7.0-RELEASE image.
Diffstat (limited to 'usr.sbin/nscd')
-rw-r--r--usr.sbin/nscd/Makefile2
-rw-r--r--usr.sbin/nscd/agent.c2
-rw-r--r--usr.sbin/nscd/agent.h2
-rw-r--r--usr.sbin/nscd/agents/Makefile.inc2
-rw-r--r--usr.sbin/nscd/agents/group.c2
-rw-r--r--usr.sbin/nscd/agents/group.h2
-rw-r--r--usr.sbin/nscd/agents/passwd.c2
-rw-r--r--usr.sbin/nscd/agents/passwd.h2
-rw-r--r--usr.sbin/nscd/agents/services.c2
-rw-r--r--usr.sbin/nscd/agents/services.h2
-rw-r--r--usr.sbin/nscd/cachelib.c2
-rw-r--r--usr.sbin/nscd/cachelib.h2
-rw-r--r--usr.sbin/nscd/cacheplcs.c2
-rw-r--r--usr.sbin/nscd/cacheplcs.h2
-rw-r--r--usr.sbin/nscd/config.c2
-rw-r--r--usr.sbin/nscd/config.h2
-rw-r--r--usr.sbin/nscd/debug.c2
-rw-r--r--usr.sbin/nscd/debug.h2
-rw-r--r--usr.sbin/nscd/hashtable.h2
-rw-r--r--usr.sbin/nscd/log.c2
-rw-r--r--usr.sbin/nscd/log.h2
-rw-r--r--usr.sbin/nscd/mp_rs_query.c2
-rw-r--r--usr.sbin/nscd/mp_rs_query.h2
-rw-r--r--usr.sbin/nscd/mp_ws_query.c2
-rw-r--r--usr.sbin/nscd/mp_ws_query.h2
-rw-r--r--usr.sbin/nscd/nscd.82
-rw-r--r--usr.sbin/nscd/nscd.c2
-rw-r--r--usr.sbin/nscd/nscd.conf.52
-rw-r--r--usr.sbin/nscd/nscdcli.c2
-rw-r--r--usr.sbin/nscd/nscdcli.h2
-rw-r--r--usr.sbin/nscd/parser.c2
-rw-r--r--usr.sbin/nscd/parser.h2
-rw-r--r--usr.sbin/nscd/protocol.c2
-rw-r--r--usr.sbin/nscd/protocol.h2
-rw-r--r--usr.sbin/nscd/query.c2
-rw-r--r--usr.sbin/nscd/query.h2
-rw-r--r--usr.sbin/nscd/singletons.c2
-rw-r--r--usr.sbin/nscd/singletons.h2
38 files changed, 38 insertions, 38 deletions
diff --git a/usr.sbin/nscd/Makefile b/usr.sbin/nscd/Makefile
index f743797701b8..f6c7aa361d3c 100644
--- a/usr.sbin/nscd/Makefile
+++ b/usr.sbin/nscd/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.sbin/nscd/Makefile,v 1.4 2007/09/27 12:30:11 bushman Exp $
PROG= nscd
MAN= nscd.conf.5 nscd.8
diff --git a/usr.sbin/nscd/agent.c b/usr.sbin/nscd/agent.c
index 2d58ef1b48c8..bc6e666335b0 100644
--- a/usr.sbin/nscd/agent.c
+++ b/usr.sbin/nscd/agent.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/agent.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <string.h>
diff --git a/usr.sbin/nscd/agent.h b/usr.sbin/nscd/agent.h
index ebe8974ee2a1..0c430cc1c8bb 100644
--- a/usr.sbin/nscd/agent.h
+++ b/usr.sbin/nscd/agent.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/agent.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_AGENT_H__
diff --git a/usr.sbin/nscd/agents/Makefile.inc b/usr.sbin/nscd/agents/Makefile.inc
index 1be32e1d986f..892f0c8bcf1f 100644
--- a/usr.sbin/nscd/agents/Makefile.inc
+++ b/usr.sbin/nscd/agents/Makefile.inc
@@ -1,3 +1,3 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.sbin/nscd/agents/Makefile.inc,v 1.2 2007/09/27 12:30:10 bushman Exp $
SRCS += passwd.c group.c services.c
diff --git a/usr.sbin/nscd/agents/group.c b/usr.sbin/nscd/agents/group.c
index b9190be44849..a66995123ace 100644
--- a/usr.sbin/nscd/agents/group.c
+++ b/usr.sbin/nscd/agents/group.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/agents/group.c,v 1.2 2007/09/27 12:30:10 bushman Exp $");
#include <sys/param.h>
#include <sys/types.h>
diff --git a/usr.sbin/nscd/agents/group.h b/usr.sbin/nscd/agents/group.h
index e6c73973f1d2..77fbf9e1d469 100644
--- a/usr.sbin/nscd/agents/group.h
+++ b/usr.sbin/nscd/agents/group.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/agents/group.h,v 1.2 2007/09/27 12:30:10 bushman Exp $
*/
#include "../agent.h"
diff --git a/usr.sbin/nscd/agents/passwd.c b/usr.sbin/nscd/agents/passwd.c
index 50c55babc633..4b7594ad2c89 100644
--- a/usr.sbin/nscd/agents/passwd.c
+++ b/usr.sbin/nscd/agents/passwd.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/agents/passwd.c,v 1.2 2007/09/27 12:30:10 bushman Exp $");
#include <sys/types.h>
#include <assert.h>
diff --git a/usr.sbin/nscd/agents/passwd.h b/usr.sbin/nscd/agents/passwd.h
index 956a50d78008..16a3f2530a87 100644
--- a/usr.sbin/nscd/agents/passwd.h
+++ b/usr.sbin/nscd/agents/passwd.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/agents/passwd.h,v 1.2 2007/09/27 12:30:10 bushman Exp $
*/
#include "../agent.h"
diff --git a/usr.sbin/nscd/agents/services.c b/usr.sbin/nscd/agents/services.c
index b0a2eb99fad8..9840baf62043 100644
--- a/usr.sbin/nscd/agents/services.c
+++ b/usr.sbin/nscd/agents/services.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/agents/services.c,v 1.3 2007/09/27 12:30:10 bushman Exp $");
#include <sys/param.h>
#include <sys/types.h>
diff --git a/usr.sbin/nscd/agents/services.h b/usr.sbin/nscd/agents/services.h
index 0b77c87a9979..c8796cb5b529 100644
--- a/usr.sbin/nscd/agents/services.h
+++ b/usr.sbin/nscd/agents/services.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/agents/services.h,v 1.2 2007/09/27 12:30:10 bushman Exp $
*/
#include "../agent.h"
diff --git a/usr.sbin/nscd/cachelib.c b/usr.sbin/nscd/cachelib.c
index 4f771cc864c3..f5d8f1e21135 100644
--- a/usr.sbin/nscd/cachelib.c
+++ b/usr.sbin/nscd/cachelib.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/cachelib.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <sys/time.h>
#include <assert.h>
diff --git a/usr.sbin/nscd/cachelib.h b/usr.sbin/nscd/cachelib.h
index b1c8af8553a4..5f6d898c9575 100644
--- a/usr.sbin/nscd/cachelib.h
+++ b/usr.sbin/nscd/cachelib.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/cachelib.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_CACHELIB_H__
diff --git a/usr.sbin/nscd/cacheplcs.c b/usr.sbin/nscd/cacheplcs.c
index a7ee38de4801..76ad808cf477 100644
--- a/usr.sbin/nscd/cacheplcs.c
+++ b/usr.sbin/nscd/cacheplcs.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/cacheplcs.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <string.h>
diff --git a/usr.sbin/nscd/cacheplcs.h b/usr.sbin/nscd/cacheplcs.h
index 8eba15fee356..80eeb37632f8 100644
--- a/usr.sbin/nscd/cacheplcs.h
+++ b/usr.sbin/nscd/cacheplcs.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/cacheplcs.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_CACHEPLCS_H__
diff --git a/usr.sbin/nscd/config.c b/usr.sbin/nscd/config.c
index bc3eb49eeb71..4d51d818e6ac 100644
--- a/usr.sbin/nscd/config.c
+++ b/usr.sbin/nscd/config.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/config.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <math.h>
diff --git a/usr.sbin/nscd/config.h b/usr.sbin/nscd/config.h
index a3205c968bbc..0e02f1f87956 100644
--- a/usr.sbin/nscd/config.h
+++ b/usr.sbin/nscd/config.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/config.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_CONFIG_H__
diff --git a/usr.sbin/nscd/debug.c b/usr.sbin/nscd/debug.c
index 420c517c1159..2c1413afb177 100644
--- a/usr.sbin/nscd/debug.c
+++ b/usr.sbin/nscd/debug.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/debug.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <stdio.h>
#include "debug.h"
diff --git a/usr.sbin/nscd/debug.h b/usr.sbin/nscd/debug.h
index 71f530088d02..d2399fd9a02d 100644
--- a/usr.sbin/nscd/debug.h
+++ b/usr.sbin/nscd/debug.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/debug.h,v 1.2 2007/08/09 13:06:11 bushman Exp $
*/
#ifndef __NSCD_DEBUG_H__
diff --git a/usr.sbin/nscd/hashtable.h b/usr.sbin/nscd/hashtable.h
index 86dad9f92b34..3c42841f93d8 100644
--- a/usr.sbin/nscd/hashtable.h
+++ b/usr.sbin/nscd/hashtable.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/hashtable.h,v 1.2 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __CACHELIB_HASHTABLE_H__
diff --git a/usr.sbin/nscd/log.c b/usr.sbin/nscd/log.c
index adfc5bf8c1c8..476ad779b83c 100644
--- a/usr.sbin/nscd/log.c
+++ b/usr.sbin/nscd/log.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/log.c,v 1.3 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <stdarg.h>
diff --git a/usr.sbin/nscd/log.h b/usr.sbin/nscd/log.h
index e02efb5cd1e4..484d7a3726f4 100644
--- a/usr.sbin/nscd/log.h
+++ b/usr.sbin/nscd/log.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/log.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_LOG_H__
diff --git a/usr.sbin/nscd/mp_rs_query.c b/usr.sbin/nscd/mp_rs_query.c
index 3375cc363a7d..9fe28ef0ab9c 100644
--- a/usr.sbin/nscd/mp_rs_query.c
+++ b/usr.sbin/nscd/mp_rs_query.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/mp_rs_query.c,v 1.3 2007/09/27 12:30:11 bushman Exp $");
#include <sys/socket.h>
#include <sys/time.h>
diff --git a/usr.sbin/nscd/mp_rs_query.h b/usr.sbin/nscd/mp_rs_query.h
index 91f13cc96c89..76f2b65b2f24 100644
--- a/usr.sbin/nscd/mp_rs_query.h
+++ b/usr.sbin/nscd/mp_rs_query.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/mp_rs_query.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_MP_RS_QUERY_H__
diff --git a/usr.sbin/nscd/mp_ws_query.c b/usr.sbin/nscd/mp_ws_query.c
index 7eae1d8dd4b0..428d9a1dcaba 100644
--- a/usr.sbin/nscd/mp_ws_query.c
+++ b/usr.sbin/nscd/mp_ws_query.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/mp_ws_query.c,v 1.3 2007/09/27 12:30:11 bushman Exp $");
#include <sys/socket.h>
#include <sys/time.h>
diff --git a/usr.sbin/nscd/mp_ws_query.h b/usr.sbin/nscd/mp_ws_query.h
index ead1d351055b..b36d5c0feb3a 100644
--- a/usr.sbin/nscd/mp_ws_query.h
+++ b/usr.sbin/nscd/mp_ws_query.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/mp_ws_query.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_MP_WS_QUERY_H__
diff --git a/usr.sbin/nscd/nscd.8 b/usr.sbin/nscd/nscd.8
index 1def32cbaf3f..176c09b997c3 100644
--- a/usr.sbin/nscd/nscd.8
+++ b/usr.sbin/nscd/nscd.8
@@ -22,7 +22,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.sbin/nscd/nscd.8,v 1.10 2007/09/27 12:30:11 bushman Exp $
.\"
.Dd October 20, 2005
.Dt NSCD 8
diff --git a/usr.sbin/nscd/nscd.c b/usr.sbin/nscd/nscd.c
index 00bc1dd989b9..1485c670c8fe 100644
--- a/usr.sbin/nscd/nscd.c
+++ b/usr.sbin/nscd/nscd.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/nscd.c,v 1.4 2007/09/27 12:30:11 bushman Exp $");
#include <sys/types.h>
#include <sys/event.h>
diff --git a/usr.sbin/nscd/nscd.conf.5 b/usr.sbin/nscd/nscd.conf.5
index f7292027580d..f58ceca1ea26 100644
--- a/usr.sbin/nscd/nscd.conf.5
+++ b/usr.sbin/nscd/nscd.conf.5
@@ -22,7 +22,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.sbin/nscd/nscd.conf.5,v 1.6 2007/09/27 12:30:11 bushman Exp $
.\"
.Dd April 30, 2006
.Dt NSCD.CONF 5
diff --git a/usr.sbin/nscd/nscdcli.c b/usr.sbin/nscd/nscdcli.c
index e7459e7ff129..5ac37c5c7fcd 100644
--- a/usr.sbin/nscd/nscdcli.c
+++ b/usr.sbin/nscd/nscdcli.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/nscdcli.c,v 1.3 2007/09/27 12:30:11 bushman Exp $");
#include <sys/types.h>
#include <sys/socket.h>
diff --git a/usr.sbin/nscd/nscdcli.h b/usr.sbin/nscd/nscdcli.h
index cfbd7e62060e..448baa82f2f3 100644
--- a/usr.sbin/nscd/nscdcli.h
+++ b/usr.sbin/nscd/nscdcli.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/nscdcli.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_NSCDCLI_H__
diff --git a/usr.sbin/nscd/parser.c b/usr.sbin/nscd/parser.c
index b877efa6cf44..119c98bc25c1 100644
--- a/usr.sbin/nscd/parser.c
+++ b/usr.sbin/nscd/parser.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/parser.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <stdio.h>
diff --git a/usr.sbin/nscd/parser.h b/usr.sbin/nscd/parser.h
index 413b784d4eef..b607219dffaa 100644
--- a/usr.sbin/nscd/parser.h
+++ b/usr.sbin/nscd/parser.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/parser.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_PARSER_H__
diff --git a/usr.sbin/nscd/protocol.c b/usr.sbin/nscd/protocol.c
index 08cea9230995..9f5db4174a8c 100644
--- a/usr.sbin/nscd/protocol.c
+++ b/usr.sbin/nscd/protocol.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/protocol.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include <assert.h>
#include <stdlib.h>
diff --git a/usr.sbin/nscd/protocol.h b/usr.sbin/nscd/protocol.h
index 6894d3c4b6de..2ecde0436e80 100644
--- a/usr.sbin/nscd/protocol.h
+++ b/usr.sbin/nscd/protocol.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/protocol.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_PROTOCOL_H__
diff --git a/usr.sbin/nscd/query.c b/usr.sbin/nscd/query.c
index 2714386c58a2..0b04d7a8fdad 100644
--- a/usr.sbin/nscd/query.c
+++ b/usr.sbin/nscd/query.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/query.c,v 1.4 2007/09/27 12:30:11 bushman Exp $");
#include <sys/types.h>
#include <sys/socket.h>
diff --git a/usr.sbin/nscd/query.h b/usr.sbin/nscd/query.h
index 383d8065917e..c6d1a37ab1ff 100644
--- a/usr.sbin/nscd/query.h
+++ b/usr.sbin/nscd/query.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/query.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_QUERY_H__
diff --git a/usr.sbin/nscd/singletons.c b/usr.sbin/nscd/singletons.c
index 669d12be2abd..707666cbf2a4 100644
--- a/usr.sbin/nscd/singletons.c
+++ b/usr.sbin/nscd/singletons.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.sbin/nscd/singletons.c,v 1.2 2007/09/27 12:30:11 bushman Exp $");
#include "singletons.h"
diff --git a/usr.sbin/nscd/singletons.h b/usr.sbin/nscd/singletons.h
index dfd891fe10c6..9cbe66e111ef 100644
--- a/usr.sbin/nscd/singletons.h
+++ b/usr.sbin/nscd/singletons.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/nscd/singletons.h,v 1.3 2007/09/27 12:30:11 bushman Exp $
*/
#ifndef __NSCD_SINGLETONS_H__