diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-05-12 09:01:50 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-05-12 09:01:50 +0000 |
commit | ed1c7282e45b9b962bc2e77a544719bbc506f294 (patch) | |
tree | efa30d1c2388664e510b2b43d2f6a41ad43b0eb0 /source3/smbd | |
parent | 1a38fcb22a98420aa185fb9a807c6b162eda708b (diff) | |
download | samba-ed1c7282e45b9b962bc2e77a544719bbc506f294.tar.gz samba-ed1c7282e45b9b962bc2e77a544719bbc506f294.tar.bz2 samba-ed1c7282e45b9b962bc2e77a544719bbc506f294.zip |
GCC accepts unnamed initalization of sub-structure. Let's see how AIX behave with this. Previous fix was incorrect.
(This used to be commit 13e1bbd803111361bcd9c28b5086277c912c59a6)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index de682793d5..92342a673b 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -48,7 +48,7 @@ struct vfs_syminfo { static struct vfs_ops default_vfs = { - .ops = { + { /* Disk operations */ vfswrap_dummy_connect, |