From 1bc953088f2fa2772b1aababb2f3819f5c6de536 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 8 Jan 2010 11:03:31 +0100 Subject: s3-time: fix build warnings after we moved to shared time functions. Bjoern, please check. Guenther --- source3/lib/time.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3') 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) -- cgit