~ubuntu-branches/ubuntu/karmic/gnupg2/karmic-updates

« back to all changes in this revision

Viewing changes to sm/keydb.c

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-03-08 22:46:47 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090308224647-gq17gatcl71lrc2k
Tags: 2.0.11-1
* New upstream release. (Closes: #496663)
* debian/control: Make the description a little more distinctive than
  gnupg v1's. Thanks Jari Aalto. (Closes: #496323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
 
393
393
 
394
394
/* If the keyring has not yet been locked, lock it now.  This
395
 
   operation is required before any update opeations; it is optionaly
 
395
   operation is required before any update operation; it is optional
396
396
   for an insert operation.  The lock is released with
397
397
   keydb_released. */
398
398
gpg_error_t
803
803
keydb_locate_writable (KEYDB_HANDLE hd, const char *reserved)
804
804
{
805
805
  int rc;
 
806
 
 
807
  (void)reserved;
806
808
  
807
809
  if (!hd)
808
810
    return gpg_error (GPG_ERR_INV_VALUE);
942
944
keydb_search_kid (KEYDB_HANDLE hd, u32 *kid)
943
945
{
944
946
  KEYDB_SEARCH_DESC desc;
 
947
 
 
948
  (void)kid;
945
949
  
946
950
  memset (&desc, 0, sizeof desc);
947
951
  desc.mode = KEYDB_SEARCH_MODE_LONG_KID;
1447
1451
  strlist_t sl;
1448
1452
  int rc=0;
1449
1453
  unsigned int old_value, value;
 
1454
 
 
1455
  (void)ctrl;
1450
1456
  
1451
1457
  hd = keydb_new (0);
1452
1458
  if (!hd)