diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/dir.c | 11 | ||||
-rw-r--r-- | source3/smbd/proto.h | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c index d4faf42fe0..c1a850ed32 100644 --- a/source3/smbd/dir.c +++ b/source3/smbd/dir.c @@ -64,6 +64,7 @@ struct dptr_struct { char *path; bool has_wild; /* Set to true if the wcard entry has MS wildcard characters in it. */ bool did_stat; /* Optimisation for non-wcard searches. */ + bool priv; /* Directory handle opened with privilege. */ }; static struct smb_Dir *OpenDir_fsp(TALLOC_CTX *mem_ctx, connection_struct *conn, @@ -647,6 +648,16 @@ int dptr_dnum(struct dptr_struct *dptr) return dptr->dnum; } +bool dptr_get_priv(struct dptr_struct *dptr) +{ + return dptr->priv; +} + +void dptr_set_priv(struct dptr_struct *dptr) +{ + dptr->priv = true; +} + /**************************************************************************** Return the next visible file name, skipping veto'd and invisible files. ****************************************************************************/ diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index 48ecfe52d5..9a1e9cd683 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -205,6 +205,8 @@ void dptr_SeekDir(struct dptr_struct *dptr, long offset); long dptr_TellDir(struct dptr_struct *dptr); bool dptr_has_wild(struct dptr_struct *dptr); int dptr_dnum(struct dptr_struct *dptr); +bool dptr_get_priv(struct dptr_struct *dptr); +void dptr_set_priv(struct dptr_struct *dptr); char *dptr_ReadDirName(TALLOC_CTX *ctx, struct dptr_struct *dptr, long *poffset, |