diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2015-06-25 01:20:47 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2015-06-25 01:20:47 +0000 |
commit | c82349ae0dfefa5d6dc9842dc8b8b840e344da3e (patch) | |
tree | 960ed576a95d4e6ab1b86b681ca71dd6180ff7ce /sysutils/zbackup | |
parent | 8ddd0dea46d908bc0d40a8becef364987892f7f6 (diff) |
Add a missing header include for unlink(2).
Notes
Notes:
svn path=/head/; revision=390527
Diffstat (limited to 'sysutils/zbackup')
-rw-r--r-- | sysutils/zbackup/files/patch-zcollector.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysutils/zbackup/files/patch-zcollector.cc b/sysutils/zbackup/files/patch-zcollector.cc new file mode 100644 index 000000000000..a560ee26e55b --- /dev/null +++ b/sysutils/zbackup/files/patch-zcollector.cc @@ -0,0 +1,10 @@ +--- zcollector.cc.orig 2015-06-25 09:16:05.655102000 +0800 ++++ zcollector.cc 2015-06-25 09:16:28.606423000 +0800 +@@ -5,6 +5,7 @@ + + #include <string> + #include <vector> ++#include <unistd.h> + + #include "bundle.hh" + #include "chunk_index.hh" |