Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Oct 2014 08:22:55 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r369700 - in head/sysutils/pwsafe: . files
Message-ID:  <201410010822.s918Mtab044884@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@donnex.net
+MAINTAINER=	gahr@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 += "&quot;"; break;
+       case '&': out += "&amp;"; break;
+       case '<': out += "&lt;"; break;
+-      case '>': out += "&gt"; break;
++      case '>': out += "&gt;"; break;
+       case '\\': out += "\\\\"; break;
+       default: out += c;
+     }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410010822.s918Mtab044884>