From d9029797fec576c517747c9adbda0d0bafdc3975 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 13 May 2003 06:13:36 +0000 Subject: Fix non-constant initialiser for Sun CC. (This used to be commit c2948b9248016388f9b7c5595b0e1aba7e1ace8d) --- source3/client/client.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/client/client.c b/source3/client/client.c index b498b5b4a8..690cc99f7f 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2261,8 +2261,14 @@ static char **remote_completion(const char *text, int len) { pstring dirmask; int i; - completion_remote_t info = { "", NULL, 1, len, text, len }; + completion_remote_t info = { "", NULL, 1, 0, NULL, 0 }; + /* can't have non-static intialisation on Sun CC, so do it + at run time here */ + info.samelen = len; + info.text = text; + info.len = len; + if (len >= PATH_MAX) return(NULL); -- cgit