summaryrefslogtreecommitdiff
path: root/source3/include/smb_macros.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-10-26 14:23:48 +0200
committerStefan Metzmacher <metze@samba.org>2011-10-26 15:33:30 +0200
commit7682f61e1003c6e43ba46013eb45248d676c4476 (patch)
tree96437606d79f0153d0ebbf60ac0306dc58ddc217 /source3/include/smb_macros.h
parent5f520e771786d416d55c8d0a84e411c73fc5396c (diff)
downloadsamba-7682f61e1003c6e43ba46013eb45248d676c4476.tar.gz
samba-7682f61e1003c6e43ba46013eb45248d676c4476.tar.bz2
samba-7682f61e1003c6e43ba46013eb45248d676c4476.zip
s3:include: implement trans_oob() as wrapper to smb_buffer_oob()
metze
Diffstat (limited to 'source3/include/smb_macros.h')
-rw-r--r--source3/include/smb_macros.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h
index 79d2f6833d..ef4b9bfccd 100644
--- a/source3/include/smb_macros.h
+++ b/source3/include/smb_macros.h
@@ -301,4 +301,7 @@ extern const char toupper_ascii_fast_table[];
#define toupper_ascii_fast(c) toupper_ascii_fast_table[(unsigned int)(c)];
#endif
+#define trans_oob(bufsize, offset, length) \
+ smb_buffer_oob(bufsize, offset, length)
+
#endif /* _SMB_MACROS_H */