Module Name: src
Committed By: christos
Date: Fri Apr 24 14:26:02 UTC 2009
Modified Files:
src/etc/rc.d: named
Log Message:
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.19 -r1.20 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.19 src/etc/rc.d/named:1.20
--- src/etc/rc.d/named:1.19 Wed Apr 22 14:27:03 2009
+++ src/etc/rc.d/named Fri Apr 24 10:26:02 2009
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: named,v 1.19 2009/04/22 18:27:03 christos Exp $
+# $NetBSD: named,v 1.20 2009/04/24 14:26:02 christos Exp $
#
# PROVIDE: named
@@ -31,7 +31,7 @@
f=${f##./}
case $f in
*/*)
- d=$dst$(dirname $f)
+ d=$dst/$(dirname $f)
;;
*) d=$dst
;;