diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-13 21:45:25 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-15 14:00:26 +0200 |
commit | ef8dc2d30e5387b38ac1a05eaece8f22326a24f8 (patch) | |
tree | e5d8df7e2cc17aa83026ff67d91242f2ca1307e4 /source3/include | |
parent | aca5e33b006d62d9a7fbf42584f93f94bda9dac4 (diff) | |
download | samba-ef8dc2d30e5387b38ac1a05eaece8f22326a24f8.tar.gz samba-ef8dc2d30e5387b38ac1a05eaece8f22326a24f8.tar.bz2 samba-ef8dc2d30e5387b38ac1a05eaece8f22326a24f8.zip |
s3:libsmb: move cli->server{zone,time} to cli->conn.smb1.server.{time_zone,system_time}
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Thu Sep 15 14:00:29 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index cdf8069dfb..37c1dcda44 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -62,8 +62,6 @@ struct cli_state { char *share; char *dev; - int serverzone; - uint32 servertime; int timeout; /* in milliseconds. */ int initialised; int win95; @@ -140,6 +138,8 @@ struct cli_state { DATA_BLOB gss_blob; uint8_t challenge[8]; const char *workgroup; + int time_zone; + time_t system_time; } server; uint32_t capabilities; |