search for: 86ba74c

Displaying 2 results from an estimated 2 matches for "86ba74c".

Did you mean: 6ba274c
2015 Feb 11
3
Samba 4.2.0rc4 fails to start up
> On Wed, Feb 11, 2015 at 11:13:42AM +0100, Volker Lendecke wrote: > > On Tue, Feb 10, 2015 at 08:59:21PM -0800, Jeremy Allison wrote: > > > Ah ok - I expected as much. snprintf seems to be > > > broken in that it's returning -1. > > > > > > Is this our snprintf or one from Solaris ? Can > > > you try and track down why it's returning
2015 Feb 12
2
Samba 4.2.0rc4 fails to start up
...<vl at samba.org> > Date: Wed, 11 Feb 2015 17:16:50 +0100 > Subject: [PATCH] snprintf: Try to support %j > > --- > lib/replace/snprintf.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/lib/replace/snprintf.c b/lib/replace/snprintf.c > index 6b4a711..86ba74c 100644 > --- a/lib/replace/snprintf.c > +++ b/lib/replace/snprintf.c > @@ -445,6 +445,10 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in > ch = *format++; > } > break; > + case 'j': > + cnk->cflags = DP_C_LL...