~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/common/pwstorage/backend_gkeyring.c

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-07-12 09:36:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110712093646-yp9dbxan44dmw15h
Tags: 0.9-1
* New upstream release.
* Remove all patches now upstream; only patch for
  -Wno-error=unused-but-set-variable remains.
* Bump Standards-Version to 3.9.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  }
91
91
  else
92
92
  {
93
 
    strcat(name,slot);
 
93
    g_strlcat(name,slot, 256);
94
94
    /* create/update item with attributes */
95
95
    result = gnome_keyring_item_create_sync(DARKTABLE_KEYRING,
96
96
                                            GNOME_KEYRING_ITEM_GENERIC_SECRET,
145
145
  }
146
146
  return table;
147
147
}
 
148
 
 
149
// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-space on;