diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-08-10 20:53:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:27 -0500 |
commit | c898c519843e9bca4104e1414d9f5e0dbad77950 (patch) | |
tree | 5250d08b56be96f5ed8342587de0540df9f2fe0c /source3/smbd | |
parent | 22b30d2a372bc9a018c592991a6478dc963e670d (diff) | |
download | samba-c898c519843e9bca4104e1414d9f5e0dbad77950.tar.gz samba-c898c519843e9bca4104e1414d9f5e0dbad77950.tar.bz2 samba-c898c519843e9bca4104e1414d9f5e0dbad77950.zip |
r24318: Print a prominent warning when reply_prep_legacy is called
This is a temporary function anyway
(This used to be commit 9269e3d5882e97d1c884df6511fa6d63a7b1cfcd)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 1b8e6521f7..d0531bdfd9 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -82,6 +82,8 @@ BOOL reply_prep_legacy(struct smb_request *req, + SAFETY_MARGIN); char *inbuf, *outbuf; + DEBUG(1, ("reply_prep_legacy called\n")); + if (!(inbuf = TALLOC_ARRAY(req, char, bufsize))) { DEBUG(0, ("Could not allocate legacy inbuf\n")); return False; |