]> git.pld-linux.org Git - packages/MyPasswordSafe.git/blob - build.patch
- release 3 (by relup.sh)
[packages/MyPasswordSafe.git] / build.patch
1 diff -ur MyPasswordSafe-20061216/src/crypto/bfproxy.cpp MyPasswordSafe-20061216-cxx/src/crypto/bfproxy.cpp
2 --- MyPasswordSafe-20061216/src/crypto/bfproxy.cpp      2004-12-06 14:07:03.000000000 +0100
3 +++ MyPasswordSafe-20061216-cxx/src/crypto/bfproxy.cpp  2016-05-14 09:19:34.294304951 +0200
4 @@ -16,6 +16,7 @@
5   * along with this program; if not, write to the Free Software
6   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
7   */
8 +#include <cstring>
9  #include "bfproxy.hpp"
10  
11  BFProxy::BFProxy(const unsigned char *key, int len)
12 diff -ur MyPasswordSafe-20061216/src/pwsafe/Util.cpp MyPasswordSafe-20061216-cxx/src/pwsafe/Util.cpp
13 --- MyPasswordSafe-20061216/src/pwsafe/Util.cpp 2004-12-06 13:32:09.000000000 +0100
14 +++ MyPasswordSafe-20061216-cxx/src/pwsafe/Util.cpp     2016-05-14 09:19:04.093954707 +0200
15 @@ -5,6 +5,7 @@
16  #include "PW_BlowFish.h"
17  //#include "PwsPlatform.h"
18  
19 +#include <limits.h>
20  #include <stdio.h>
21  #include <iostream>
22  using std::cout;
23 diff -ur MyPasswordSafe-20061216/src/pwsafe/Util.h MyPasswordSafe-20061216-cxx/src/pwsafe/Util.h
24 --- MyPasswordSafe-20061216/src/pwsafe/Util.h   2004-11-01 22:54:35.000000000 +0100
25 +++ MyPasswordSafe-20061216-cxx/src/pwsafe/Util.h       2016-05-14 09:16:54.929114068 +0200
26 @@ -10,6 +10,8 @@
27  #include <assert.h>
28  
29  #include <string>
30 +#include <cstring>
31 +#include <cstdlib>
32  using std::string;
33  #include "PW_sha1.h"
34  #include "PwsPlatform.h"
35 @@ -171,7 +173,7 @@
36  }
37  #endif
38  
39 -inline char * strFind( const char *str, const char *fstr )
40 +inline char * strFind( char *str, const char *fstr )
41  {
42         return strstr( str, fstr );
43  }
44 diff -ur MyPasswordSafe-20061216/src/safe.hpp MyPasswordSafe-20061216-cxx/src/safe.hpp
45 --- MyPasswordSafe-20061216/src/safe.hpp        2005-11-23 14:21:29.000000000 +0100
46 +++ MyPasswordSafe-20061216-cxx/src/safe.hpp    2016-05-13 07:43:12.482802320 +0200
47 @@ -129,7 +129,7 @@
48    SafeEntry(SafeGroup *parent);
49    SafeEntry(SafeGroup *parent,
50             const QString &n, const QString &u,
51 -           const EncryptedString &p, const QString &n);
52 +           const EncryptedString &p, const QString &note);
53    SafeEntry(const SafeEntry &item);
54    ~SafeEntry();
55  
56 diff -ur MyPasswordSafe-20061216/src/safeserializer.cpp MyPasswordSafe-20061216-cxx/src/safeserializer.cpp
57 --- MyPasswordSafe-20061216/src/safeserializer.cpp      2004-12-06 13:34:28.000000000 +0100
58 +++ MyPasswordSafe-20061216-cxx/src/safeserializer.cpp  2016-05-13 08:10:44.589090628 +0200
59 @@ -16,6 +16,7 @@
60   * along with this program; if not, write to the Free Software
61   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
62   */
63 +#include <algorithm>
64  #include <qstring.h>
65  #include "safe.hpp"
66  #include "safeserializer.hpp"
This page took 0.024761 seconds and 3 git commands to generate.