summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Richards <paul@FreeBSD.org>2000-12-30 00:14:01 +0000
committerPaul Richards <paul@FreeBSD.org>2000-12-30 00:14:01 +0000
commit28d1c3442149a9ea3838ca5935592b340f66e10b (patch)
tree6eac69780383358f6bcb2b1adfafecd7c67d2a90
parenta8bbdaecf7d92bbc600bd96f444d3c80cd129c4a (diff)
Notes
-rwxr-xr-xusr.sbin/pkg_install/update/pkg_update.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/update/pkg_update.pl b/usr.sbin/pkg_install/update/pkg_update.pl
index b868c0ec756f..e4f68049d815 100755
--- a/usr.sbin/pkg_install/update/pkg_update.pl
+++ b/usr.sbin/pkg_install/update/pkg_update.pl
@@ -69,7 +69,7 @@ sub get_requires($$) {
return 1;
}
- if (! open(REQUIRES, "<$file")) {
+ if (! open(REQUIRES, "< $file")) {
error("Can't open $file, $!");
return 0;
}
@@ -89,7 +89,7 @@ sub put_requires($$) {
my $file = "$PKG_DB/$pkg/$PKG_DEP_FILE";
- if (! open(REQUIRES, ">$file")) {
+ if (! open(REQUIRES, "> $file")) {
error("Can't open $file, $!");
return 0;
}