public
Description: Git mirror of the MacPorts svn repo
Homepage: http://www.macports.org
Clone URL: git://github.com/kballard/macports.git
Search Repo:
Remove obsoleted patchfiles for encfs


git-svn-id: http://svn.macports.org/repository/macports/trunk@36276 
d073be05-634f-4543-b044-5fe20cf6d1d6
kballard (author)
Fri Apr 25 05:36:18 -0700 2008
commit  f4a16fee13b7d266486cd03c50f204eb3b076c2b
tree    9aba1c6cc1848a06f21b2462e83b5975bc8d0150
parent  529a73475eec9b3afac40f2bef5a35a806868b49
...
1
2
3
4
5
6
7
8
9
10
...
 
 
 
 
 
 
 
 
 
 
0
@@ -1,11 +1 @@
0
---- encfs/Config.h.old 2007-03-14 19:32:37.000000000 -0400
0
-+++ encfs/Config.h 2007-03-14 19:32:50.000000000 -0400
0
-@@ -18,6 +18,7 @@
0
- #ifndef _Config_incl_
0
- #define _Config_incl_
0
-
0
-+#include "../config.h"
0
- #include <string>
0
- #include <map>
0
-
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,39 +1 @@
0
---- encfs/encfs.cpp.old 2007-03-14 19:34:49.000000000 -0400
0
-+++ encfs/encfs.cpp 2007-03-14 19:35:34.000000000 -0400
0
-@@ -609,7 +609,7 @@
0
-
0
- rLog(Info, "setxattr %s", cyName.c_str());
0
-
0
-- res = ::setxattr( cyName.c_str(), name, value, size, flags );
0
-+ res = ::setxattr( cyName.c_str(), name, value, size, flags, 0 );
0
- if(res == -1)
0
- res = -errno;
0
- } catch( rlog::Error &err )
0
-@@ -630,7 +630,7 @@
0
-
0
- rLog(Info, "getxattr %s", cyName.c_str());
0
-
0
-- res = ::getxattr( cyName.c_str(), name, value, size );
0
-+ res = ::getxattr( cyName.c_str(), name, value, size, 0, 0 );
0
- if(res == -1)
0
- res = -errno;
0
- } catch( rlog::Error &err )
0
-@@ -650,7 +650,7 @@
0
-
0
- rLog(Info, "listxattr %s", cyName.c_str());
0
-
0
-- res = ::listxattr( cyName.c_str(), list, size );
0
-+ res = ::listxattr( cyName.c_str(), list, size, 0 );
0
- if(res == -1)
0
- res = -errno;
0
- } catch( rlog::Error &err )
0
-@@ -670,7 +670,7 @@
0
-
0
- rLog(Info, "removexattr %s", cyName.c_str());
0
-
0
-- res = ::removexattr( cyName.c_str(), name );
0
-+ res = ::removexattr( cyName.c_str(), name, 0 );
0
- if(res == -1)
0
- res = -errno;
0
- } catch( rlog::Error &err )

Comments

    No one has commented yet.