X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fprint.c;h=aaa3845448bc02b3c430f44fcfab3ce106d6a6de;hb=eae2233d0ce2e956a6018b2dfd1f00e3d9478075;hp=02b95bcc05f98712db79f49754636c01f092042c;hpb=51fb09470189bab6f23478eaf3720e2c99616045;p=openldap diff --git a/libraries/libldap/print.c b/libraries/libldap/print.c index 02b95bcc05..aaa3845448 100644 --- a/libraries/libldap/print.c +++ b/libraries/libldap/print.c @@ -1,7 +1,16 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2005 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ #include "portable.h" @@ -43,15 +52,8 @@ int ldap_log_printf( LDAP *ld, int loglvl, const char *fmt, ... ) va_start( ap, fmt ); -#ifdef HAVE_VSNPRINTF buf[sizeof(buf) - 1] = '\0'; vsnprintf( buf, sizeof(buf)-1, fmt, ap ); -#elif HAVE_VSPRINTF - vsprintf( buf, fmt, ap ); /* hope it's not too long */ -#else - /* use doprnt() */ - chokeme = "choke me! I don't have a doprnt manual handy!"; -#endif va_end(ap);