diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 13:22:03 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:09 +0200 |
commit | f6e053202481631b12d75f6a552ee1aa8b355064 (patch) | |
tree | f029e300d5005e87774a3d1c6390423d0c09f9fd /source3/utils/net_usershare.c | |
parent | 2320b2144fcb1236c082278444e3c6df998e17ec (diff) | |
download | samba-f6e053202481631b12d75f6a552ee1aa8b355064.tar.gz samba-f6e053202481631b12d75f6a552ee1aa8b355064.tar.xz samba-f6e053202481631b12d75f6a552ee1aa8b355064.zip |
build: Remove SMB_STRUCT_DIR define
Diffstat (limited to 'source3/utils/net_usershare.c')
-rw-r--r-- | source3/utils/net_usershare.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/utils/net_usershare.c b/source3/utils/net_usershare.c index b7ec7a94c3..b11757a611 100644 --- a/source3/utils/net_usershare.c +++ b/source3/utils/net_usershare.c @@ -208,7 +208,7 @@ static struct file_list *flist; static int get_share_list(TALLOC_CTX *ctx, const char *wcard, bool only_ours) { - SMB_STRUCT_DIR *dp; + DIR *dp; struct dirent *de; uid_t myuid = geteuid(); struct file_list *fl = NULL; @@ -546,7 +546,7 @@ static int net_usershare_info(struct net_context *c, int argc, const char **argv static int count_num_usershares(void) { - SMB_STRUCT_DIR *dp; + DIR *dp; struct dirent *de; int num_usershares = 0; TALLOC_CTX *ctx = talloc_tos(); @@ -1059,7 +1059,7 @@ static int net_usershare_list(struct net_context *c, int argc, int net_usershare(struct net_context *c, int argc, const char **argv) { - SMB_STRUCT_DIR *dp; + DIR *dp; struct functable func[] = { { |