summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-04-16 19:10:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:23 -0500
commite59b5276b56d6963ddd0598bbd1b15426d2d13e8 (patch)
tree39c65d0290ef025882df7d39afcb4d1e477a8b58 /source/include
parent66b0a6cc51a3987c489cc71a17c0da632bf6a6bc (diff)
downloadsamba-e59b5276b56d6963ddd0598bbd1b15426d2d13e8.tar.gz
samba-e59b5276b56d6963ddd0598bbd1b15426d2d13e8.tar.xz
samba-e59b5276b56d6963ddd0598bbd1b15426d2d13e8.zip
r22266: Fix bug #4512 - we were returning a volume label greater than
32 unicode chars. Windows XP doesn't like that :-). Jeremy
Diffstat (limited to 'source/include')
-rw-r--r--source/include/smb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/smb.h b/source/include/smb.h
index 8f54ed7b84a..a9c57f77f25 100644
--- a/source/include/smb.h
+++ b/source/include/smb.h
@@ -878,7 +878,7 @@ struct connections_data {
int cnum;
uid_t uid;
gid_t gid;
- char name[24];
+ char servicename[FSTRING_LEN];
char addr[24];
char machine[FSTRING_LEN];
time_t start;