s3-time: fix build warnings after we moved to shared time functions.
authorGünther Deschner <gd@samba.org>
Fri, 8 Jan 2010 10:03:31 +0000 (11:03 +0100)
committerGünther Deschner <gd@samba.org>
Fri, 8 Jan 2010 11:35:25 +0000 (12:35 +0100)
Bjoern, please check.

Guenther

source3/lib/time.c

index 5286af37fd7eee72d786e5228d1d7b963059e2e5..dffc03b1cf7b0b31dc40703bb213aae9306aeb64 100644 (file)
@@ -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)