diff options
-rw-r--r-- | source3/client/client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index c3a557ede6..6e1c87023f 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1695,7 +1695,6 @@ static int do_allinfo(const char *name) struct timespec b_time, a_time, m_time, c_time; off_t size; uint16_t mode; - SMB_INO_T ino; NTTIME tmp; uint16_t fnum; unsigned int num_streams; @@ -1723,7 +1722,7 @@ static int do_allinfo(const char *name) d_printf("altname: %s\n", altname); status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time, - &size, &mode, &ino); + &size, &mode, NULL); if (!NT_STATUS_IS_OK(status)) { d_printf("%s getting pathinfo for %s\n", nt_errstr(status), name); |