Module Name: src
Committed By: christos
Date: Fri Aug 28 15:26:23 UTC 2020
Modified Files:
src/usr.sbin/postinstall: postinstall.in
Log Message:
missing quote
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/usr.sbin/postinstall/postinstall.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/postinstall/postinstall.in
diff -u src/usr.sbin/postinstall/postinstall.in:1.32 src/usr.sbin/postinstall/postinstall.in:1.33
--- src/usr.sbin/postinstall/postinstall.in:1.32 Fri Aug 28 11:25:16 2020
+++ src/usr.sbin/postinstall/postinstall.in Fri Aug 28 11:26:23 2020
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: postinstall.in,v 1.32 2020/08/28 15:25:16 christos Exp $
+# $NetBSD: postinstall.in,v 1.33 2020/08/28 15:26:23 christos Exp $
#
# Copyright (c) 2002-2015 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -860,7 +860,7 @@ fixblock() {
local p=$(${STAT} -f %Lp "${target}")
chmod u+w "${target}" || return 1
if [ "$2" = "/etc/npf.conf" ]; then
- ${SED} -i -e 's/"blacklistd/"blocklistd"/g' "${target}"
+ ${SED} -i -e 's/"blacklistd"/"blocklistd"/g' "${target}"
else
${SED} -i -e 's/\([bB]\)lacklist/\1locklist/g' "${target}"
fi