~ubuntu-branches/ubuntu/jaunty/gvfs/jaunty-updates

« back to all changes in this revision

Viewing changes to daemon/gvfsbackendsmbbrowse.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-02 18:10:40 UTC
  • mfrom: (1.1.37 upstream)
  • Revision ID: james.westby@ubuntu.com-20090302181040-bozliyntjtpd0ozp
Tags: 1.1.7-0ubuntu1
* New upstream version:
  - Fix build on some platforms
  - ftp: Fix short read errors (lp: #208750)
  - gphoto2: Make it work on iphone
  - sftp: Fix symlink creation
  - fuse: Better support of truncation, fixing OOo save (lp: #317587)
  - proxy monitors: Support mount operations, etc
  - gvfs-mount: add --device commandline support
  - sftp: Fix protocol bug that made some servers not work (lp: #286053)
  - general support for query_info over streams, implemented for smb, sftp
  - Initial support for .xdg-volume-info reading (lp: #269159)
  - fix trash crasher (lp: #332554)
  - use ssh config (lp: #264803)
* debian/patches/02_support_xdg_volume_info.patch:
  - the new version fixes this issue
* debian/patches/91_upstream_change_fix_trash_crasher.patch:
  - upstream change to fix a trash crasher (lp: #333791)
* debian/rules:
  - shlibs version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
        {
615
615
          if (res < 0)
616
616
            DEBUG ("update_cache - smbc_getdents returned %d, errno = [%d] %s\n", 
617
 
                   res, errno, strerror (errno));
 
617
                   res, errno, g_strerror (errno));
618
618
          break;
619
619
        }  
620
620
      
937
937
 
938
938
      DEBUG ("do_mount - [%s; %d] dir = %p, cancelled = %d, errno = [%d] '%s' \n", 
939
939
             uri->str, op_backend->mount_try, dir, op_backend->mount_cancelled, 
940
 
             errno, strerror (errno));
 
940
             errno, g_strerror (errno));
941
941
 
942
942
      if (dir == NULL && 
943
943
          (op_backend->mount_cancelled || (errno != EPERM && errno != EACCES)))