diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-03 08:50:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-03 08:50:59 +0000 |
commit | fd6ea431617d91c5f5c6b07cb26910f4900c1515 (patch) | |
tree | f079e0acc8629c45bf049f5bd58fe5b10e4b3d03 /source3/script | |
parent | 95739423d0116074a16b7b1c6b389ca2bbe34c7c (diff) | |
download | samba-fd6ea431617d91c5f5c6b07cb26910f4900c1515.tar.gz |
the next step in our error code handling change
- added WERROR for win32 error codes
- added a configure test for immediate structures
still lots to do, so its not enabled by default, but the main
structure is there
(This used to be commit 24f9ab683dec52587ee56717e821b49c0fa3d70f)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index a541f2f2b0b..200e4243bc4 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -126,7 +126,7 @@ END { gotstart = 1; } - if( $0 ~ /^smb_iconv_t|^long|^char|^uint|^NTSTATUS|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^FILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT/ ) { + if( $0 ~ /^smb_iconv_t|^long|^char|^uint|^NTSTATUS|^WERROR|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^FILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT/ ) { gotstart = 1; } |