From 4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 28 Jun 2004 08:27:36 +0000 Subject: r1279: rename struct tcon_context to smbsrv_tcon metze (This used to be commit 99473fab4b1ff87a795f3c08f4c521d9beb504c0) --- source4/lib/substitute.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/substitute.c b/source4/lib/substitute.c index 4e4f0bc040..7d3997ecd7 100644 --- a/source4/lib/substitute.c +++ b/source4/lib/substitute.c @@ -165,16 +165,16 @@ char *alloc_sub_advanced(int snum, const char *user, Do some standard substitutions in a string. ****************************************************************************/ -void standard_sub_conn(struct tcon_context *conn, char *str, size_t len) +void standard_sub_tcon(struct smbsrv_tcon *tcon, char *str, size_t len) { } -char *talloc_sub_conn(TALLOC_CTX *mem_ctx, struct tcon_context *conn, char *str) +char *talloc_sub_tcon(TALLOC_CTX *mem_ctx, struct smbsrv_tcon *tcon, char *str) { return talloc_strdup(mem_ctx, str); } -char *alloc_sub_conn(struct tcon_context *conn, char *str) +char *alloc_sub_tcon(struct smbsrv_tcon *tcon, char *str) { return strdup(str); } -- cgit