svn commit: r369700 - in head/sysutils/pwsafe: . files
Pietro Cerutti
gahr at FreeBSD.org
Wed Oct 1 08:22:56 UTC 2014
Author: gahr
Date: Wed Oct 1 08:22:55 2014
New Revision: 369700
URL: https://svnweb.freebsd.org/changeset/ports/369700
QAT: https://qat.redports.org/buildarchive/r369700/
Log:
- Fix the encoding of the '>' xml entity when exporting
- Take maintainership
PR: 193709
Modified:
head/sysutils/pwsafe/Makefile
head/sysutils/pwsafe/files/patch-pwsafe.cpp
Modified: head/sysutils/pwsafe/Makefile
==============================================================================
--- head/sysutils/pwsafe/Makefile Wed Oct 1 08:16:14 2014 (r369699)
+++ head/sysutils/pwsafe/Makefile Wed Oct 1 08:22:55 2014 (r369700)
@@ -7,7 +7,7 @@ PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://nsd.dyndns.org/pwsafe/releases/
-MAINTAINER= donnex at donnex.net
+MAINTAINER= gahr at FreeBSD.org
COMMENT= Cmdline program that manages encrypted password databases
OPTIONS_DEFINE= SETUID X11
Modified: head/sysutils/pwsafe/files/patch-pwsafe.cpp
==============================================================================
--- head/sysutils/pwsafe/files/patch-pwsafe.cpp Wed Oct 1 08:16:14 2014 (r369699)
+++ head/sysutils/pwsafe/files/patch-pwsafe.cpp Wed Oct 1 08:22:55 2014 (r369700)
@@ -1,5 +1,5 @@
---- pwsafe.cpp.orig Wed Oct 12 11:57:28 2005
-+++ pwsafe.cpp Wed Oct 12 12:02:44 2005
+--- pwsafe.cpp.orig 2005-09-30 12:30:56.000000000 +0200
++++ pwsafe.cpp 2014-09-17 15:44:48.000000000 +0200
@@ -1019,7 +1019,12 @@
// seed the random number generator
char rng_filename[1024];
@@ -14,3 +14,12 @@
if (rc) {
if (arg_verbose > 0) printf("rng seeded with %d bytes from %s\n", rc, rng_filename);
} else {
+@@ -2111,7 +2116,7 @@
+ case '"': out += """; break;
+ case '&': out += "&"; break;
+ case '<': out += "<"; break;
+- case '>': out += ">"; break;
++ case '>': out += ">"; break;
+ case '\\': out += "\\\\"; break;
+ default: out += c;
+ }
More information about the svn-ports-all
mailing list