summaryrefslogtreecommitdiff
path: root/sysutils/cbsd/files
diff options
context:
space:
mode:
authorVeniamin Gvozdikov <vg@FreeBSD.org>2015-08-15 12:22:55 +0000
committerVeniamin Gvozdikov <vg@FreeBSD.org>2015-08-15 12:22:55 +0000
commit0168a5ee42ae7d3f636b8f68af620bc8753b7f94 (patch)
treeff6e8bb7b2ccd4f604eafe79ba4def7b6529dc8a /sysutils/cbsd/files
parent- Fix PLIST (diff)
- Update to 10.2.0
- Start of integration with libxo - jimport: opportunity to set alternative IP for imported jail via newip= argument - fixes for resource leaks in cbsdsh/cbsd_fwatch - bhyve: when you create FreeBSD VM via FreeBSD-from-jail profile, you can specify a size of swap partition - bhyve: opportunity to create a virtual machine through FreeBSD-from-jail profile on ZFS filesystem - Initial XEN support PR: ports/202344 Submitted by: <olevole@olevole.ru> (maintainer)
Notes
Notes: svn path=/head/; revision=394317
Diffstat (limited to 'sysutils/cbsd/files')
-rw-r--r--sysutils/cbsd/files/patch-bin-cbsdsh-cbsd_fwatch.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/sysutils/cbsd/files/patch-bin-cbsdsh-cbsd_fwatch.c b/sysutils/cbsd/files/patch-bin-cbsdsh-cbsd_fwatch.c
deleted file mode 100644
index 5a6bd0a03846..000000000000
--- a/sysutils/cbsd/files/patch-bin-cbsdsh-cbsd_fwatch.c
+++ /dev/null
@@ -1,39 +0,0 @@
---- bin/cbsdsh/cbsd_fwatch.c.orig 2015-02-05 17:33:24.019144000 +0300
-+++ bin/cbsdsh/cbsd_fwatch.c 2015-02-05 16:57:53.000000000 +0300
-@@ -95,7 +95,6 @@
- return 1;
- }
-
--
- if ((fd = open(watchfile, O_RDONLY)) == -1) {
- out2fmt_flush("Cannot open: %s\n", watchfile);
- ckfree(watchfile);
-@@ -117,6 +116,7 @@
- out2fmt_flush("kevent\n");
- close(fd);
- ckfree(watchfile);
-+ close(kq);
- return 1;
- }
-
-@@ -134,9 +134,12 @@
- out2fmt_flush("kevent\n");
- close(fd);
- ckfree(watchfile);
-+ close(kq);
- return 1;
- }
-
-+ close(kq);
-+
- if (nev != 0) {
- if (ev.fflags & NOTE_DELETE) {
- out2fmt_flush("deleted\n");
-@@ -173,5 +176,7 @@
- ev.fflags &= ~NOTE_REVOKE;
- }
- }
-+
-+ ckfree(watchfile);
- return 0;
- }