diff options
author | Derrell Lipman <derrell@samba.org> | 2005-08-23 19:53:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:01:12 -0500 |
commit | 7dd03e891e3aa06aa000e9bea8e0bad8ede34c8c (patch) | |
tree | 8b5ec44319a3145ce70b3ec2b5166f9e17c0ee6e /source3/include | |
parent | b07bc6b66137eac977c0ac2282dff70c2ad94a16 (diff) | |
download | samba-7dd03e891e3aa06aa000e9bea8e0bad8ede34c8c.tar.gz samba-7dd03e891e3aa06aa000e9bea8e0bad8ede34c8c.tar.bz2 samba-7dd03e891e3aa06aa000e9bea8e0bad8ede34c8c.zip |
r9540: correct comments in struct smbc_dirent (fixes bug 3030)
(This used to be commit 1f8aff85a68569480efc543cfe1556752c35311e)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/libsmbclient.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 3269d6f0bf..2d7d96c2dd 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -105,15 +105,15 @@ struct smbc_dirent /** Length of this smbc_dirent in bytes */ unsigned int dirlen; - /** The length of the comment string in bytes (includes null - * terminator) + /** The length of the comment string in bytes (does not include + * null terminator) */ unsigned int commentlen; /** Points to the null terminated comment string */ char *comment; - /** The length of the name string in bytes (includes null - * terminator) + /** The length of the name string in bytes (does not include + * null terminator) */ unsigned int namelen; /** Points to the null terminated name string |