diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:33:43 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:33:43 +0000 |
commit | 8e4ab747b02207671203d40cd2a78692da78faef (patch) | |
tree | c4ebd704ba8a88f67513a61f4e4e5e11e78d6132 /source4/libcli/clifile.c | |
parent | efacfb37fc0d7310c72c40bfed4b52ecaf365b11 (diff) | |
download | samba-8e4ab747b02207671203d40cd2a78692da78faef.tar.gz samba-8e4ab747b02207671203d40cd2a78692da78faef.tar.xz samba-8e4ab747b02207671203d40cd2a78692da78faef.zip |
more fixes from the IRIX compiler (thanks herb!)
(This used to be commit 4cf3839b727c77a727abb558bd9473119a092913)
Diffstat (limited to 'source4/libcli/clifile.c')
-rw-r--r-- | source4/libcli/clifile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/clifile.c b/source4/libcli/clifile.c index d37a68c1e1..27ead40740 100644 --- a/source4/libcli/clifile.c +++ b/source4/libcli/clifile.c @@ -34,11 +34,11 @@ static BOOL cli_link_internal(struct cli_state *cli, NTSTATUS status; if (hard_link) { - parms.generic.level = SMB_SFILEINFO_UNIX_HLINK; + parms.generic.level = RAW_SFILEINFO_UNIX_HLINK; parms.unix_hlink.file.fname = fname_src; parms.unix_hlink.in.link_dest = fname_dst; } else { - parms.generic.level = SMB_SFILEINFO_UNIX_LINK; + parms.generic.level = RAW_SFILEINFO_UNIX_LINK; parms.unix_link.file.fname = fname_src; parms.unix_link.in.link_dest = fname_dst; } |