From a26f1f12b39c162a075305da5be9571330928fb6 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 22 May 2006 16:26:42 +0000 Subject: r15809: Fix typo in array offsets. Caught by the IBM checker. (This used to be commit fa23b09567637f2fd5c293a6ac623707a7ac1289) --- source4/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client/client.c') diff --git a/source4/client/client.c b/source4/client/client.c index 0100887777..4672e468ac 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -1702,11 +1702,11 @@ static int cmd_fsinfo(struct smbclient_context *ctx, const char **args) GUID_string(ctx,&fsinfo.objectid_information.out.guid)); d_printf("\tunknown[6]: [%llu,%llu,%llu,%llu,%llu,%llu]\n", (unsigned long long) fsinfo.objectid_information.out.unknown[0], + (unsigned long long) fsinfo.objectid_information.out.unknown[1], (unsigned long long) fsinfo.objectid_information.out.unknown[2], (unsigned long long) fsinfo.objectid_information.out.unknown[3], (unsigned long long) fsinfo.objectid_information.out.unknown[4], - (unsigned long long) fsinfo.objectid_information.out.unknown[5], - (unsigned long long) fsinfo.objectid_information.out.unknown[6] ); + (unsigned long long) fsinfo.objectid_information.out.unknown[5] ); break; case RAW_QFS_GENERIC: d_printf("\twrong level returned\n"); -- cgit