diff options
author | Günther Deschner <gd@samba.org> | 2010-01-08 11:03:31 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-01-08 12:35:25 +0100 |
commit | 1bc953088f2fa2772b1aababb2f3819f5c6de536 (patch) | |
tree | 637ed7eb03b5cfc43474ca0e1c14a05c7e1aa9c8 /source3/lib | |
parent | 9bdd3d6c1b1aec536d87fb2e2d4e8495b3c88ee6 (diff) | |
download | samba-1bc953088f2fa2772b1aababb2f3819f5c6de536.tar.gz samba-1bc953088f2fa2772b1aababb2f3819f5c6de536.tar.bz2 samba-1bc953088f2fa2772b1aababb2f3819f5c6de536.zip |
s3-time: fix build warnings after we moved to shared time functions.
Bjoern, please check.
Guenther
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/time.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c index 5286af37fd..dffc03b1cf 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -198,17 +198,17 @@ char *current_timestring(TALLOC_CTX *ctx, bool hires) void srv_put_dos_date(char *buf,int offset,time_t unixdate) { - push_dos_date(buf, offset, unixdate, server_zone_offset); + push_dos_date((uint8_t *)buf, offset, unixdate, server_zone_offset); } void srv_put_dos_date2(char *buf,int offset, time_t unixdate) { - push_dos_date2(buf, offset, unixdate, server_zone_offset); + push_dos_date2((uint8_t *)buf, offset, unixdate, server_zone_offset); } void srv_put_dos_date3(char *buf,int offset,time_t unixdate) { - push_dos_date3(buf, offset, unixdate, server_zone_offset); + push_dos_date3((uint8_t *)buf, offset, unixdate, server_zone_offset); } void round_timespec(enum timestamp_set_resolution res, struct timespec *ts) @@ -439,17 +439,17 @@ struct timespec interpret_long_date(const char *p) void cli_put_dos_date(struct cli_state *cli, char *buf, int offset, time_t unixdate) { - push_dos_date(buf, offset, unixdate, cli->serverzone); + push_dos_date((uint8_t *)buf, offset, unixdate, cli->serverzone); } void cli_put_dos_date2(struct cli_state *cli, char *buf, int offset, time_t unixdate) { - push_dos_date2(buf, offset, unixdate, cli->serverzone); + push_dos_date2((uint8_t *)buf, offset, unixdate, cli->serverzone); } void cli_put_dos_date3(struct cli_state *cli, char *buf, int offset, time_t unixdate) { - push_dos_date3(buf, offset, unixdate, cli->serverzone); + push_dos_date3((uint8_t *)buf, offset, unixdate, cli->serverzone); } time_t cli_make_unix_date(struct cli_state *cli, const void *date_ptr) |