[svn] gpgme - r1277 - trunk/gpgme
svn author wk
cvs at cvs.gnupg.org
Tue Nov 20 11:40:50 CET 2007
Author: wk
Date: 2007-11-20 11:40:41 +0100 (Tue, 20 Nov 2007)
New Revision: 1277
Modified:
trunk/gpgme/ChangeLog
trunk/gpgme/gpgme.h
trunk/gpgme/op-support.c
Log:
Suuport INV_RECP reason code 11.
Changed address paragraph in top comment.
Modified: trunk/gpgme/ChangeLog
===================================================================
--- trunk/gpgme/ChangeLog 2007-11-12 11:34:13 UTC (rev 1276)
+++ trunk/gpgme/ChangeLog 2007-11-20 10:40:41 UTC (rev 1277)
@@ -1,3 +1,7 @@
+2007-11-20 Werner Koch <wk at g10code.com>
+
+ * op-support.c (_gpgme_parse_inv_recp): Add new reason code 11.
+
2007-11-12 Marcus Brinkmann <marcus at g10code.de>
* kdpipeiodevice.cpp: New version from Frank Osterfeld.
Modified: trunk/gpgme/gpgme.h
===================================================================
--- trunk/gpgme/gpgme.h 2007-11-12 11:34:13 UTC (rev 1276)
+++ trunk/gpgme/gpgme.h 2007-11-20 10:40:41 UTC (rev 1277)
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- MA 02110-1301, USA. */
+ License along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
#ifndef GPGME_H
#define GPGME_H
Modified: trunk/gpgme/op-support.c
===================================================================
--- trunk/gpgme/op-support.c 2007-11-12 11:34:13 UTC (rev 1276)
+++ trunk/gpgme/op-support.c 2007-11-20 10:40:41 UTC (rev 1277)
@@ -1,5 +1,5 @@
-/* op-support.c
- Copyright (C) 2002, 2003, 2004 g10 Code GmbH
+/* op-support.c - Supporting functions.
+ Copyright (C) 2002, 2003, 2004, 2007 g10 Code GmbH
This file is part of GPGME.
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA. */
+ License along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
#if HAVE_CONFIG_H
#include <config.h>
@@ -214,6 +213,10 @@
case 10:
inv_key->reason = gpg_error (GPG_ERR_PUBKEY_NOT_TRUSTED);
break;
+
+ case 11:
+ inv_key->reason = gpg_error (GPG_ERR_MISSING_CERT);
+ break;
}
while (*tail == ' ')
More information about the Gnupg-commits
mailing list