1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-17 15:00:59 -04:00
|
|
|
/*
|
2000-05-12 22:36:07 -04:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-17 15:00:59 -04:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
2000-06-07 14:49:36 -04:00
|
|
|
#include <lber.h>
|
1999-08-17 15:00:59 -04:00
|
|
|
#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 );
|
1999-08-17 15:00:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progname = strrchr ( argv[0], *LDAP_DIRSEP );
|
2000-06-07 02:33:59 -04:00
|
|
|
progname = ber_strdup( progname ? &progname[1] : argv[0] );
|
1999-08-17 15:00:59 -04:00
|
|
|
|
|
|
|
|
return progname;
|
|
|
|
|
}
|