diff options
| author | Steffen Hansen <[email protected]> | 2002-06-27 13:15:02 +0000 | 
|---|---|---|
| committer | Steffen Hansen <[email protected]> | 2002-06-27 13:15:02 +0000 | 
| commit | bb19f16ec4861af434be89a8c2fdb42ad53ac758 (patch) | |
| tree | fb97a9c93d856686faebe156e1f92ba25e4b1b02 /gpgmeplug/cryptplug.h | |
| parent | Missing implementation bug fixed: Return both error id and error plain text f... (diff) | |
| download | gpgme-bb19f16ec4861af434be89a8c2fdb42ad53ac758.tar.gz gpgme-bb19f16ec4861af434be89a8c2fdb42ad53ac758.zip | |
handle truncated data
Diffstat (limited to 'gpgmeplug/cryptplug.h')
| -rw-r--r-- | gpgmeplug/cryptplug.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index b978fb70..6d901d94 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -1832,7 +1832,7 @@ struct CertificateInfo {      dont free() it, the struct will be reused      by the next call to nextCertificate()    } -  endListCertificates( it ); +  int truncated = endListCertificates( it );  \endverbatim  */  struct CertIterator* @@ -1841,7 +1841,7 @@ startListCertificates( const char* pattern, int remote );  int  nextCertificate( struct CertIterator*, struct CertificateInfo** result ); -void +int  endListCertificates( struct CertIterator* );  /*! | 
