1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r7210: Fix my own mistakes up, sorry.

Jeremy.
(This used to be commit 53c3a954ee)
This commit is contained in:
Jeremy Allison 2005-06-03 05:35:04 +00:00 committed by Gerald (Jerry) Carter
parent 97a2087c14
commit 0deab47cc6
3 changed files with 5 additions and 5 deletions

View File

@ -560,7 +560,7 @@ const char *dptr_ReadDirName(struct dptr_struct *dptr, long *poffset, SMB_STRUCT
{
pstring pathreal;
SET_STAT_INVALID(pst);
SET_STAT_INVALID(*pst);
if (dptr->has_wild) {
return dptr_normal_ReadDirName(dptr, poffset, pst);
@ -629,7 +629,7 @@ const char *dptr_ReadDirName(struct dptr_struct *dptr, long *poffset, SMB_STRUCT
BOOL dptr_SearchDir(struct dptr_struct *dptr, const char *name, long *poffset, SMB_STRUCT_STAT *pst)
{
SET_STAT_INVALID(pst);
SET_STAT_INVALID(*pst);
if (!dptr->has_wild && (dptr->dir_hnd->offset == -1)) {
/* This is a singleton directory and we're already at the end. */
@ -958,7 +958,7 @@ BOOL is_visible_file(connection_struct *conn, const char *dir_path, const char *
BOOL hide_unwriteable = lp_hideunwriteable_files(SNUM(conn));
BOOL hide_special = lp_hide_special_files(SNUM(conn));
SET_STAT_INVALID(pst);
SET_STAT_INVALID(*pst);
if ((strcmp(".",name) == 0) || (strcmp("..",name) == 0)) {
return True; /* . and .. are always visible. */

View File

@ -92,7 +92,7 @@ BOOL unix_convert(pstring name,connection_struct *conn,char *saved_last_componen
BOOL component_was_mangled = False;
BOOL name_has_wildcard = False;
SET_STAT_INVALID(pst);
SET_STAT_INVALID(*pst);
*dirpath = 0;
*bad_path = False;

View File

@ -275,7 +275,7 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser,
*user = 0;
fstrcpy(dev, pdev);
SET_STAT_INVALD(st);
SET_STAT_INVALID(st);
if (NT_STATUS_IS_ERR(*status = share_sanity_checks(snum, dev))) {
return NULL;