rpms/gnupg2/devel gnupg2.spec, 1.41, 1.42 gpg-agent-startup.sh, 1.3, 1.4

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Mon Sep 18 12:47:36 UTC 2006


Author: rdieter

Update of /cvs/extras/rpms/gnupg2/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20975

Modified Files:
	gnupg2.spec gpg-agent-startup.sh 
Log Message:
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-4
- fix "syntax error in gpg-agent-startup.sh" (#206887)



Index: gnupg2.spec
===================================================================
RCS file: /cvs/extras/rpms/gnupg2/devel/gnupg2.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- gnupg2.spec	7 Sep 2006 20:29:06 -0000	1.41
+++ gnupg2.spec	18 Sep 2006 12:47:36 -0000	1.42
@@ -16,7 +16,7 @@
 Summary: Utility for secure communication and data storage
 Name:    gnupg2
 Version: 1.9.22
-Release: 3%{?dist}
+Release: 4%{?dist}
 
 License: GPL
 Group:   Applications/System
@@ -170,6 +170,9 @@
 
 
 %changelog
+* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-4
+- fix "syntax error in gpg-agent-startup.sh" (#206887)
+
 * Thu Sep 07 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.9.22-3
 - fc6 respin (for libksba-1.0)
 


Index: gpg-agent-startup.sh
===================================================================
RCS file: /cvs/extras/rpms/gnupg2/devel/gpg-agent-startup.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gpg-agent-startup.sh	22 Jun 2006 16:38:21 -0000	1.3
+++ gpg-agent-startup.sh	18 Sep 2006 12:47:36 -0000	1.4
@@ -7,7 +7,7 @@
   # check validity of GPG_SOCKET (in case of session crash)
   if [ -f ${HOME}/.gpg-agent-info ]; then
     GPG_SOCKET=$(cat .gpg-agent-info |cut -f1 -d:)
-    if ! test -S ${GPG_SOCKET} -o ! test -O ${GPG_SOCKET} ; then
+    if ! test -S ${GPG_SOCKET} -o ! -O ${GPG_SOCKET} ; then
       rm -f ${HOME}/.gpg-agent-info 2>&1 >/dev/null
     fi
   fi




More information about the scm-commits mailing list