mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Most function and variable definitions are now preceded by its extern definition, for error checking. Retyped a number of functions, usually to return void. Fixed a number of printf format errors. API changes (in ldap/include): Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h. A number of `extern' declarations are left (some added by protoize), to be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind, optarg, errno.
45 lines
672 B
C
45 lines
672 B
C
#include "portable.h"
|
|
|
|
#ifndef HAVE_TEMPNAM
|
|
|
|
#include <stdlib.h>
|
|
#include <stdlib.h>
|
|
#include <ac/string.h>
|
|
extern char *mktemp (char *);
|
|
|
|
#include "lutil.h"
|
|
|
|
char *
|
|
tempnam( char *dir, char *pfx )
|
|
{
|
|
char *s;
|
|
|
|
if ( dir == NULL ) {
|
|
dir = "/tmp";
|
|
}
|
|
|
|
/*
|
|
* allocate space for dir + '/' + pfx (up to 5 chars) + 6 trailing 'X's + 0 byte
|
|
*/
|
|
if (( s = (char *)malloc( strlen( dir ) + 14 )) == NULL ) {
|
|
return( NULL );
|
|
}
|
|
|
|
strcpy( s, dir );
|
|
strcat( s, "/" );
|
|
if ( pfx != NULL ) {
|
|
strcat( s, pfx );
|
|
}
|
|
strcat( s, "XXXXXX" );
|
|
mktemp( s );
|
|
|
|
if ( *s == '\0' ) {
|
|
free( s );
|
|
s = NULL;
|
|
}
|
|
|
|
return( s );
|
|
}
|
|
|
|
#endif /* nextstep */
|