mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
12 lines
301 B
C++
12 lines
301 B
C++
--- pxattr.cpp.orig 2013-02-02 17:45:27 UTC
|
|||
|
|
+++ pxattr.cpp
|
||
|
|
@@ -802,7 +802,7 @@ void printxattr(const string &path, con
|
||
|
|
|
||
|
|
void delxattr(const string &path, const string& name)
|
||
|
|
{
|
||
|
|
- if (pxattr::del(path, name) < 0) {
|
||
|
|
+ if (!pxattr::del(path, name)) {
|
||
|
|
perror("pxattr::del");
|
||
|
|
exit(1);
|
||
|
|
}
|