1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- Fix the encoding of the '>' xml entity when exporting

- Take maintainership

PR:			193709
This commit is contained in:
Pietro Cerutti 2014-10-01 08:22:55 +00:00
parent 6a0181bd5e
commit e8cce9555d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369700
2 changed files with 12 additions and 3 deletions

View File

@ -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

View File

@ -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 += "&lt;"; break;
- case '>': out += "&gt"; break;
+ case '>': out += "&gt;"; break;
case '\\': out += "\\\\"; break;
default: out += c;
}