Suuport INV_RECP reason code 11.
authorWerner Koch <wk@gnupg.org>
Tue, 20 Nov 2007 10:40:41 +0000 (10:40 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 20 Nov 2007 10:40:41 +0000 (10:40 +0000)
Changed address paragraph in top comment.

gpgme/ChangeLog
gpgme/gpgme.h
gpgme/op-support.c

index 1739e1b0a2496865862af88baad4ac3898efd3f9..e6366c33dcb60d7952b680c31fc12bc056ff37c1 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-20  Werner Koch  <wk@g10code.com>
+
+       * op-support.c (_gpgme_parse_inv_recp): Add new reason code 11.
+
 2007-11-12  Marcus Brinkmann  <marcus@g10code.de>
 
        * kdpipeiodevice.cpp: New version from Frank Osterfeld.
index 57bb01162f3ebba984c68122119488f470543355..5daac087165400685c6c46b9857fa2876f37a061 100644 (file)
@@ -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
index b7df3f135c57b80ad73d9d496bde868b949872f5..6e118044fb7020753033913aa78f8bbfbe868870 100644 (file)
@@ -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 @@ _gpgme_parse_inv_recp (char *args, gpgme_invalid_key_t *key)
     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 == ' ')