diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-23 08:20:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:28:53 -0500 |
commit | 041204d1a4ec9b19287ca92fa5b291a8eb5ff10b (patch) | |
tree | 2e605631f8ae055fee0d3431dcbc482f6e08a8e9 | |
parent | 530f6a927baae8eb5c8b1b03295c8ff5ddbc70be (diff) | |
download | samba-041204d1a4ec9b19287ca92fa5b291a8eb5ff10b.tar.gz samba-041204d1a4ec9b19287ca92fa5b291a8eb5ff10b.tar.bz2 samba-041204d1a4ec9b19287ca92fa5b291a8eb5ff10b.zip |
r23996: One more const
(This used to be commit a54fa551a4b9ffe3f29b339a54e563cdfe924959)
-rw-r--r-- | source3/smbd/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 02e4cd9663..07dec80a47 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -487,7 +487,7 @@ files_struct *file_fnum(uint16 fnum) Get an fsp from a packet given the offset of a 16 bit fnum. ****************************************************************************/ -files_struct *file_fsp(char *buf, int where) +files_struct *file_fsp(const char *buf, int where) { files_struct *fsp; |