~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/Gnome.Keyring/Ring.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge, Jo Shields, Sebastian Dröge
  • Date: 2009-03-06 11:02:03 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (4.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090306110203-5nbuw7itgo5mn9e0
Tags: 0.12.2-3
[ Jo Shields ]
* debian/control:
  + Add Vcs-* fields

[ Sebastian Dröge ]
* Upload to unstable (Closes: #518414).
* debian/control:
  + Use Gnome# 2.20 for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
                        try {
266
266
                                resp = SendRequest (req.Stream);
267
267
                        } catch (KeyringException ke) {
268
 
                                if (ke.ResultCode == ResultCode.Denied)
 
268
                                if (ke.ResultCode == ResultCode.Denied ||
 
269
                                    ke.ResultCode == ResultCode.NoMatch)
269
270
                                        return empty_item_data;
270
271
                                throw;
271
272
                        }
308
309
                        try {
309
310
                                resp = SendRequest (req.Stream);
310
311
                        } catch (KeyringException ke) {
311
 
                                if (ke.ResultCode == ResultCode.Denied)
 
312
                                if (ke.ResultCode == ResultCode.Denied ||
 
313
                                    ke.ResultCode == ResultCode.NoMatch)
312
314
                                        return empty_net_item_data;
313
315
                                throw;
314
316
                        }