Changeset 945


Ignore:
Timestamp:
Aug 3, 2016, 2:27:45 PM (9 years ago)
Author:
Silvan Scherrer
Message:

samba server: add exceptq to windindd as well

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/winbindd/winbindd.c

    r862 r945  
    2222   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2323*/
     24#ifdef __OS2__
     25#define INCL_DOSEXCEPTIONS
     26#define INCL_DOSPROCESS
     27#define INCL_DOSMODULEMGR
     28#define INCL_LOADEXCEPTQ
     29#define INCL_FORKEXCEPTQ
     30#include "os2.h"
     31#include "exceptq.h"
     32#undef FILE_CREATE
     33#undef FILE_OPEN
     34#endif
    2435
    2536#include "includes.h"
     
    12461257        NTSTATUS status;
    12471258
     1259#ifdef __OS2__
     1260        EXCEPTIONREGISTRATIONRECORD ExRegRec;
     1261        LoadExceptq(&ExRegRec, NULL, NULL);
     1262#endif
    12481263        /*
    12491264         * Do this before any other talloc operation
     
    14721487        }
    14731488
     1489#ifdef __OS2__
     1490        UninstallExceptq(&ExRegRec);
     1491#endif
    14741492        return 0;
    14751493}
Note: See TracChangeset for help on using the changeset viewer.