From dd0d4b527006d4f3724e496ff9d8be3cc1a176b3 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Fri, 30 Aug 2002 14:05:22 +0000 Subject: based on function prototype, the args were switched - this gave an error on the IRIX compiler. could whoever put the FIXME message take a look and see if it is still broken. (This used to be commit 29a8f2121114cafca07797cadaeb26c9d0055b24) --- source3/lib/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/time.c') diff --git a/source3/lib/time.c b/source3/lib/time.c index f37380df70..ef12dc15f3 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -43,7 +43,7 @@ int extra_time_offset = 0; void get_nttime_max(NTTIME *t) { /* FIXME: This is incorrect */ - unix_to_nt_time(get_time_t_max(),t); + unix_to_nt_time(t, get_time_t_max()); } /******************************************************************* -- cgit