openldap/libraries/liblutil/utils.c

39 lines
720 B
C
Raw Normal View History

/* $OpenLDAP$ */
/*
2000-05-12 22:36:07 -04:00
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <ac/stdlib.h>
#include <ac/string.h>
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <lber.h>
#include <lutil.h>
#include <ldap_defaults.h>
char* lutil_progname( const char* name, int argc, char *argv[] )
{
char *progname;
if(argc == 0) {
2000-06-07 02:33:59 -04:00
return ber_strdup( name );
}
progname = strrchr ( argv[0], *LDAP_DIRSEP );
2000-06-07 02:33:59 -04:00
progname = ber_strdup( progname ? &progname[1] : argv[0] );
return progname;
}
2001-06-15 00:16:55 -04:00
#ifndef HAVE_MKSTEMP
int mkstemp( char * template )
{
return open ( mktemp ( template ), O_RDWR|O_CREAT|O_EXCL, 0600 );
2001-06-15 00:16:55 -04:00
}
2001-10-11 00:01:45 -04:00
#endif