summaryrefslogtreecommitdiff
path: root/source3/libsmb/climessage.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-03-10 11:35:25 +0000
committerAndrew Tridgell <tridge@samba.org>2001-03-10 11:35:25 +0000
commit45c2ee3ff2d01fdd0a2db9fa90457cff4663c43d (patch)
tree8c90348163cbf2f618960fc9e181dbe1881f3702 /source3/libsmb/climessage.c
parent9579f927dc5ce82bdf51ce49419dc039560e5e18 (diff)
downloadsamba-45c2ee3ff2d01fdd0a2db9fa90457cff4663c43d.tar.gz
samba-45c2ee3ff2d01fdd0a2db9fa90457cff4663c43d.tar.bz2
samba-45c2ee3ff2d01fdd0a2db9fa90457cff4663c43d.zip
to use the same macros in the client and server rename the CLISTR_
macros to STR_ (This used to be commit 95c9e4e0ba8f37f565aaf136f41eb76489441ff7)
Diffstat (limited to 'source3/libsmb/climessage.c')
-rw-r--r--source3/libsmb/climessage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/climessage.c b/source3/libsmb/climessage.c
index 47139dcfd6..87f8175459 100644
--- a/source3/libsmb/climessage.c
+++ b/source3/libsmb/climessage.c
@@ -42,10 +42,10 @@ BOOL cli_message_start(struct cli_state *cli, char *host, char *username,
p = smb_buf(cli->outbuf);
*p++ = 4;
p += clistr_push(cli, p, username, -1,
- CLISTR_TERMINATE|CLISTR_CONVERT);
+ STR_TERMINATE|STR_CONVERT);
*p++ = 4;
p += clistr_push(cli, p, host, -1,
- CLISTR_TERMINATE|CLISTR_CONVERT);
+ STR_TERMINATE|STR_CONVERT);
cli_setup_bcc(cli, p);