]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: smbd: Naming consistency. Change all uses of struct smb_Dir * variables to be...
authorJeremy Allison <jra@samba.org>
Wed, 17 Jul 2019 16:53:40 +0000 (09:53 -0700)
committerAndreas Schneider <asn@cryptomilk.org>
Wed, 24 Jul 2019 07:40:23 +0000 (07:40 +0000)
Fixes TellDir(). No logic changes.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
source3/smbd/dir.c

index 5e991bf3317186d5b2b0a243ac84653104179d47..d21f87e9fd1ae7e8a75baca4616cf9895c97b48e 100644 (file)
@@ -1890,9 +1890,9 @@ void SeekDir(struct smb_Dir *dirp, long offset)
  Tell a dir position.
 ********************************************************************/
 
-long TellDir(struct smb_Dir *dirp)
+long TellDir(struct smb_Dir *dir_hnd)
 {
-       return(dirp->offset);
+       return(dir_hnd->offset);
 }
 
 /*******************************************************************