Ignore:
Timestamp:
Apr 4, 2017, 11:34:00 AM (8 years ago)
Author:
Paul Smedley
Message:

Update rc codes for EA Set/query fucntions, fixes some wps copy issues to shares that don't support EA, but the share has EA support enabled

File:
1 edited

Legend:

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

    r1006 r1014  
    14301430        debuglocal(9,"NdpEAQuery <%s> %d %d %d\n", pfi->pszName, rc, pFEASrc->cbList, pFEAList->cbList);
    14311431        LEAVE();
    1432         return rc;
     1432        if (rc)
     1433                return ERROR_EAS_NOT_SUPPORTED;
     1434        else
     1435                return rc;
    14331436}
    14341437
     
    14661469        rc = helperEASet(pConn->cli, pFEAList, path);
    14671470        debuglocal(9,"NdpEASet %d\n", rc);
    1468         return rc;
     1471        if (rc)
     1472                return ERROR_EAS_NOT_SUPPORTED;
     1473        else
     1474                return rc;
    14691475}
    14701476
     
    15491555        debuglocal(9,"NdpEASize <%s> %d %d\n", pfi->pszName, *pulEASize, rc);
    15501556        LEAVE();
    1551         return rc;
     1557        if (rc)
     1558                return ERROR_EAS_NOT_SUPPORTED;
     1559        else
     1560                return rc;
    15521561}
    15531562
Note: See TracChangeset for help on using the changeset viewer.