From 2efe201fa4082f0aad7360b9f6f21c7683a29e96 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Thu, 14 Aug 2003 21:56:26 +0000 Subject: client/client.c - cannot initialize struct with non-const values include/byteorder.h - fix for IRIX compiler - cannot cast an LVALUE include/smb_interfaces.h - remove empty structure source/lib/debug.c - void functions cannot return value libcli/clifile.c - cannot assign *struct to struct (This used to be commit 9a724762012f55d21d44ea87add7daf21f7414d1) --- source4/libcli/clifile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/libcli/clifile.c') diff --git a/source4/libcli/clifile.c b/source4/libcli/clifile.c index cd01d51017..d37a68c1e1 100644 --- a/source4/libcli/clifile.c +++ b/source4/libcli/clifile.c @@ -505,11 +505,11 @@ BOOL cli_getattrE(struct cli_state *cli, int fd, } if (a_time) { - *a_time = &parms.getattre.out.access_time; + *a_time = parms.getattre.out.access_time; } if (m_time) { - *m_time = &parms.getattre.out.write_time; + *m_time = parms.getattre.out.write_time; } return True; -- cgit