diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-22 16:26:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:26 -0500 |
commit | a26f1f12b39c162a075305da5be9571330928fb6 (patch) | |
tree | 55defca02383b72e0f8e7ea4d136d5821ce36eaf /source4 | |
parent | 3bd0802272938c022384bbfae8360c4f1470ad65 (diff) | |
download | samba-a26f1f12b39c162a075305da5be9571330928fb6.tar.gz samba-a26f1f12b39c162a075305da5be9571330928fb6.tar.bz2 samba-a26f1f12b39c162a075305da5be9571330928fb6.zip |
r15809: Fix typo in array offsets. Caught by the IBM checker.
(This used to be commit fa23b09567637f2fd5c293a6ac623707a7ac1289)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |