Changeset 945
- Timestamp:
- Aug 3, 2016, 2:27:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/winbindd/winbindd.c
r862 r945 22 22 along with this program. If not, see <http://www.gnu.org/licenses/>. 23 23 */ 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 24 35 25 36 #include "includes.h" … … 1246 1257 NTSTATUS status; 1247 1258 1259 #ifdef __OS2__ 1260 EXCEPTIONREGISTRATIONRECORD ExRegRec; 1261 LoadExceptq(&ExRegRec, NULL, NULL); 1262 #endif 1248 1263 /* 1249 1264 * Do this before any other talloc operation … … 1472 1487 } 1473 1488 1489 #ifdef __OS2__ 1490 UninstallExceptq(&ExRegRec); 1491 #endif 1474 1492 return 0; 1475 1493 }
Note:
See TracChangeset
for help on using the changeset viewer.