diff options
author | Björn Baumbach <bb@sernet.de> | 2011-07-19 10:48:16 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-20 22:09:25 +0200 |
commit | 9b168e128a74b7e816a6eea73d1b8db8b915b701 (patch) | |
tree | 67aebe2769008c3b641f32cc438c2768b98fc7dc /source3/torture/utable.c | |
parent | 8f41e54d538896a929ef8ebf224ddcfea7982ba8 (diff) | |
download | samba-9b168e128a74b7e816a6eea73d1b8db8b915b701.tar.gz samba-9b168e128a74b7e816a6eea73d1b8db8b915b701.tar.xz samba-9b168e128a74b7e816a6eea73d1b8db8b915b701.zip |
s3-libsmb: replace cli_read() with cli_read_old()
Will introduce new cli_read() function.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/torture/utable.c')
-rw-r--r-- | source3/torture/utable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/utable.c b/source3/torture/utable.c index 4c6605d921..b75790e17b 100644 --- a/source3/torture/utable.c +++ b/source3/torture/utable.c @@ -188,7 +188,7 @@ bool torture_casetable(int dummy) return False; } - cli_read(cli, fnum, (char *)c2, 0, size); + cli_read_old(cli, fnum, (char *)c2, 0, size); printf("%04x: ", c); equiv[c][0] = c; for (i=0; i<size/sizeof(int); i++) { |