Ignore:
Timestamp:
Nov 26, 2007, 9:24:27 AM (18 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.27a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/client/umount.cifs.c

    r1 r105  
    343343        /* fixup path if needed */
    344344
     345        /* Trim any trailing slashes */
     346        while ((strlen(mountpoint) > 1) &&
     347                (mountpoint[strlen(mountpoint)-1] == '/'))
     348        {
     349                mountpoint[strlen(mountpoint)-1] = '\0';
     350        }
     351
    345352        /* make sure that this is a cifs filesystem */
    346353        rc = statfs(mountpoint, &statbuf);
Note: See TracChangeset for help on using the changeset viewer.