Ignore:
Timestamp:
May 24, 2009, 7:51:24 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/include/nt_status.h

    r206 r223  
    8484} while (0)
    8585
     86#define W_ERROR_NOT_OK_GOTO_DONE(x) do { \
     87        if (!W_ERROR_IS_OK(x)) {\
     88                goto done;\
     89        }\
     90} while (0)
     91
     92#define W_ERROR_NOT_OK_GOTO(x, y) do {\
     93        if (!W_ERROR_IS_OK(x)) {\
     94                goto y;\
     95        }\
     96} while(0)
     97
    8698/* The top byte in an NTSTATUS code is used as a type field.
    8799 * Windows only uses value 0xC0 as an indicator for an NT error
Note: See TracChangeset for help on using the changeset viewer.