From bbd7ca65e706457f5dbc046e83b4bd8cdde5be8f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 16 Jun 1998 18:25:36 +0000 Subject: clientgen: Added USE_SSL for client shutdown. clitar.c: Added 'Samba style' comments before string_create_s(). loadparm.c: Fixed missing comma in SSL code. util.c: Removed string_create_s(). Currently it's only called from clitar.c and having it here as well as a static in clitar causes the compile to break (Richard, please decide where you want this function). lib/rpc/parse/parse_net.c: Fix from to stop coredump on missing parameter. Jeremy. (This used to be commit d23b44322570cb9a7aa2b86407bf4f91010a237b) --- source3/client/clitar.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/client/clitar.c') diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 04d435eca7..bd42c2677a 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -190,7 +190,9 @@ static BOOL sub_dir(char *dir1, char *dir2) #endif /* Removed to get around gcc 'defined but not used' error. */ -/* Create a string of size size+1 (for the null) */ +/******************************************************************* +Create a string of size size+1 (for the null) +*******************************************************************/ static char * string_create_s(int size) { char *tmp; -- cgit