diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2014-10-01 08:22:55 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2014-10-01 08:22:55 +0000 |
commit | e8cce9555d2a89e7f988d48cefa77e0e0f9a7c39 (patch) | |
tree | 90f34666cae244dff2487350abc6767fcff71b73 /sysutils/pwsafe | |
parent | 6a0181bd5ee716981005d2906738015dde719562 (diff) | |
download | freebsd-ports-e8cce9555d2a89e7f988d48cefa77e0e0f9a7c39.zip |
- Fix the encoding of the '>' xml entity when exporting
- Take maintainership
PR: 193709
Diffstat (limited to 'sysutils/pwsafe')
-rw-r--r-- | sysutils/pwsafe/Makefile | 2 | ||||
-rw-r--r-- | sysutils/pwsafe/files/patch-pwsafe.cpp | 13 |
2 files changed, 12 insertions, 3 deletions
diff --git a/sysutils/pwsafe/Makefile b/sysutils/pwsafe/Makefile index 78357c40f42b..8d18821a8292 100644 --- a/sysutils/pwsafe/Makefile +++ b/sysutils/pwsafe/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://nsd.dyndns.org/pwsafe/releases/ -MAINTAINER= donnex@donnex.net +MAINTAINER= gahr@FreeBSD.org COMMENT= Cmdline program that manages encrypted password databases OPTIONS_DEFINE= SETUID X11 diff --git a/sysutils/pwsafe/files/patch-pwsafe.cpp b/sysutils/pwsafe/files/patch-pwsafe.cpp index 537381a0dc03..0892e0a44999 100644 --- a/sysutils/pwsafe/files/patch-pwsafe.cpp +++ b/sysutils/pwsafe/files/patch-pwsafe.cpp @@ -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; + } |