~jm-leddy/ubuntu/oneiric/gvfs/fix-899858

« back to all changes in this revision

Viewing changes to daemon/gvfsbackendafc.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-08-22 12:26:27 UTC
  • mfrom: (1.1.72 upstream)
  • Revision ID: james.westby@ubuntu.com-20110822122627-p38bv0co8hq1cjtz
Tags: 1.9.3-0ubuntu1
* New upstream release
* debian/watch: Look for unstable releases and tar.bz2.
* debian/control.in: Bump libglib2.0-dev build dependency as per upstream
  configure.ac.
* Drop debian/patches/debian-changes-1.9.2-0ubuntu2, not necessary any more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
    case AFC_E_OBJECT_NOT_FOUND:
215
215
      g_vfs_job_failed (job, G_IO_ERROR, error,
216
216
                        _("File does not exist"));
 
217
      break;
217
218
    case AFC_E_DIR_NOT_EMPTY:
218
219
      g_vfs_job_failed (job, G_IO_ERROR, error,
219
220
                        _("The directory is not empty"));
286
287
    case LOCKDOWN_E_PASSWORD_PROTECTED:
287
288
      g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_PERMISSION_DENIED,
288
289
                        _("Permission denied"));
 
290
      break;
289
291
    default:
290
292
      g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_FAILED,
291
293
                        _("Unhandled Lockdown error (%d)"), cond);
310
312
    case IDEVICE_E_NO_DEVICE:
311
313
      g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_FAILED,
312
314
                        _("libimobiledevice Error: No device found. Make sure usbmuxd is set up correctly."));
 
315
      break;
313
316
    default:
314
317
      g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_FAILED,
315
318
                        _("Unhandled libimobiledevice error (%d)"), cond);