summaryrefslogtreecommitdiff
path: root/source3/smbd/proto.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-07-17 09:51:07 -0700
committerAndreas Schneider <asn@cryptomilk.org>2019-07-24 07:40:23 +0000
commitec072f1a971faba9c140bae0f7792e5fc154189f (patch)
treed07a8c7d9faa3ea75195d12f19b5b2c649acf4a0 /source3/smbd/proto.h
parentcc4ac86b950f443b4dd23ca997d872549c80a484 (diff)
downloadsamba-ec072f1a971faba9c140bae0f7792e5fc154189f.tar.gz
s3: smbd: Naming consistency. Change all uses of struct smb_Dir * variables to be dir_hnd.
Fixes ReadDirName(). No logic changes. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/smbd/proto.h')
-rw-r--r--source3/smbd/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h
index 4a47d394686..35f9e3def19 100644
--- a/source3/smbd/proto.h
+++ b/source3/smbd/proto.h
@@ -230,7 +230,7 @@ struct smb_Dir *OpenDir(TALLOC_CTX *mem_ctx,
const struct smb_filename *smb_fname,
const char *mask,
uint32_t attr);
-const char *ReadDirName(struct smb_Dir *dirp, long *poffset,
+const char *ReadDirName(struct smb_Dir *dir_hnd, long *poffset,
SMB_STRUCT_STAT *sbuf, char **talloced);
void RewindDir(struct smb_Dir *dirp, long *poffset);
void SeekDir(struct smb_Dir *dirp, long offset);