summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-06-28 08:27:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:48 -0500
commit4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f (patch)
treeead976b86dc26d251caa010a307e03abba8e7da3 /source4/include
parent0aba9a2e3fc222625f31cc6fd12f1c7c7021c660 (diff)
downloadsamba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.tar.gz
samba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.tar.bz2
samba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.zip
r1279: rename struct tcon_context to smbsrv_tcon
metze (This used to be commit 99473fab4b1ff87a795f3c08f4c521d9beb504c0)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/include/context.h b/source4/include/context.h
index 5070228440..2df68b96b9 100644
--- a/source4/include/context.h
+++ b/source4/include/context.h
@@ -49,8 +49,8 @@ enum ntvfs_type {NTVFS_DISK, NTVFS_PRINT, NTVFS_IPC};
include recursion */
struct ntvfs_ops;
-struct tcon_context {
- struct tcon_context *next, *prev;
+struct smbsrv_tcon {
+ struct smbsrv_tcon *next, *prev;
/* the server context that this was created on */
struct smbsrv_context *smb_ctx;
@@ -84,7 +84,7 @@ struct request_context {
struct smbsrv_context *smb_ctx;
/* conn is only set for operations that have a valid TID */
- struct tcon_context *conn;
+ struct smbsrv_tcon *tcon;
/* the user context is derived from the vuid plus smb.conf options */
struct smbsrv_user *user_ctx;
@@ -191,7 +191,7 @@ struct files_context {
/* the context associated with open tree connects on a smb socket */
struct tree_context {
- struct tcon_context *connections;
+ struct smbsrv_tcon *tcons;
/* number of open connections */
struct bitmap *bmap;