Changeset 999 for branches


Ignore:
Timestamp:
Dec 28, 2016, 10:02:30 PM (9 years ago)
Author:
Paul Smedley
Message:

Return an appropriate return code for NdpCreateDir when directory creation fails, fixes #273

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/client-3.0/src/ndpsmb.c

    r934 r999  
    16361636        debuglocal(9,"NdpCreateDir <%s> (%s) rc=%d, EASupport=%s rc=%d\n", szDirName, path, rc, pRes->easupport?"yes":"no", rcEASet);
    16371637
    1638         return rc;
     1638        if (rc)
     1639                return ERROR_NETWORK_ACCESS_DENIED;
     1640        else
     1641                return rc;
    16391642}
    16401643
Note: See TracChangeset for help on using the changeset viewer.