Module Name: src
Committed By: snj
Date: Sun Nov 15 06:05:52 UTC 2009
Modified Files:
src/etc/rc.d [netbsd-5]: named
Log Message:
Pull up following revision(s) (requested by dholland in ticket #1146):
etc/rc.d/named: revision 1.20
PR/41273: Martin Mersberger: missing '/' in /etc/rc.d/named in section
named_migrate
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.18.28.1 src/etc/rc.d/named
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/etc/rc.d/named
diff -u src/etc/rc.d/named:1.18 src/etc/rc.d/named:1.18.28.1
--- src/etc/rc.d/named:1.18 Tue Nov 29 21:07:25 2005
+++ src/etc/rc.d/named Sun Nov 15 06:05:52 2009
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: named,v 1.18 2005/11/29 21:07:25 christos Exp $
+# $NetBSD: named,v 1.18.28.1 2009/11/15 06:05:52 snj Exp $
#
# PROVIDE: named
@@ -31,7 +31,7 @@
f=${f##./}
case $f in
*/*)
- d=$dst$(dirname $f)
+ d=$dst/$(dirname $f)
;;
*) d=$dst
;;