Module Name:    src
Committed By:   drochner
Date:           Sat Jan 23 17:44:44 UTC 2010

Modified Files:
        src/etc/rc.d: mdnsd

Log Message:
fix an obvious typo in directory check


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/rc.d/mdnsd

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/mdnsd
diff -u src/etc/rc.d/mdnsd:1.1 src/etc/rc.d/mdnsd:1.2
--- src/etc/rc.d/mdnsd:1.1	Tue Sep 29 23:56:27 2009
+++ src/etc/rc.d/mdnsd	Sat Jan 23 17:44:44 2010
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: mdnsd,v 1.1 2009/09/29 23:56:27 tsarna Exp $
+# $NetBSD: mdnsd,v 1.2 2010/01/23 17:44:44 drochner Exp $
 #
 
 # PROVIDE: mdnsd
@@ -16,7 +16,7 @@
 
 mdnsd_precmd()
 {
-    if [ ! -d /var/run/mdns ]; then
+    if [ ! -d /var/run/mdnsd ]; then
         mkdir -p -m 755 /var/run/mdnsd
     fi
     chown _mdnsd:_mdnsd /var/run/mdnsd

Reply via email to