diff options
author | Jeremy Allison <jra@samba.org> | 2005-02-22 20:54:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:43 -0500 |
commit | fcbb7b0e25ae22bd8fb04918cf1c5af44a06ca19 (patch) | |
tree | fbf704b510965301e50d54e669f819f6facd1980 /source3 | |
parent | 6baedb3d3f1f4cafb82c4a8d619cb972d5a42382 (diff) | |
download | samba-fcbb7b0e25ae22bd8fb04918cf1c5af44a06ca19.tar.gz samba-fcbb7b0e25ae22bd8fb04918cf1c5af44a06ca19.tar.bz2 samba-fcbb7b0e25ae22bd8fb04918cf1c5af44a06ca19.zip |
r5508: Typo - ZERO_STRUCT -> ZERO_STRUCTP.
Jeremy.
(This used to be commit 76e1d90aef45ccc089492d962e0f284e2e4d8e7a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c index fb1a700074..7dde18f430 100644 --- a/source3/smbd/dir.c +++ b/source3/smbd/dir.c @@ -902,7 +902,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)); - ZERO_STRUCT(pst); + ZERO_STRUCTP(pst); if ((strcmp(".",name) == 0) || (strcmp("..",name) == 0)) { return True; /* . and .. are always visible. */ |