diff options
author | Volker Lendecke <vl@samba.org> | 2008-11-05 10:48:43 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-11-05 10:48:43 +0100 |
commit | b9211deba8aa6e0da4e66b6675b1e4baaaea55e1 (patch) | |
tree | ea10894b68860a6b833dd22c5a8ce57a50b24e54 | |
parent | 95d1825a51544eba8e2fd4d3cfccaf9c240b7ce6 (diff) | |
download | samba-b9211deba8aa6e0da4e66b6675b1e4baaaea55e1.tar.gz samba-b9211deba8aa6e0da4e66b6675b1e4baaaea55e1.tar.bz2 samba-b9211deba8aa6e0da4e66b6675b1e4baaaea55e1.zip |
Fix the build
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 958e8634e9..7931fbebab 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1610,7 +1610,7 @@ void construct_reply_common(const char *inbuf, char *outbuf) void construct_reply_common_req(struct smb_request *req, char *outbuf) { - return construct_reply_common((char *)req->inbuf, outbuf); + construct_reply_common((char *)req->inbuf, outbuf); } /**************************************************************************** |