DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦cbe194fbb⟧ TextFile

    Length: 2678 (0xa76)
    Types: TextFile
    Names: »modifyrdn.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/quipu/dish/modifyrdn.c« 

TextFile

/* modifyrdn.c - */

#ifndef	lint
static char *rcsid = "$Header: /f/osi/quipu/dish/RCS/modifyrdn.c,v 7.0 89/11/23 22:20:15 mrose Rel $";
#endif

/* 
 * $Header: /f/osi/quipu/dish/RCS/modifyrdn.c,v 7.0 89/11/23 22:20:15 mrose Rel $
 *
 *
 * $Log:	modifyrdn.c,v $
 * Revision 7.0  89/11/23  22:20:15  mrose
 * Release 6.0
 * 
 */

/*
 *				  NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


#include "quipu/util.h"
#include "quipu/modifyrdn.h"

extern DN       dn;

#define	OPT	(!frompipe || rps -> ps_byteno == 0 ? opt : rps)
#define	RPS	(!frompipe || opt -> ps_byteno == 0 ? rps : opt)
extern	char	frompipe;
extern	PS	opt, rps;

call_modifyrdn (argc, argv)
int             argc;
char          **argv;
{
	struct ds_modifyrdn_arg modrdn_arg;
	struct DSError  error;
	RDN             newname = NULLRDN;
	DN              dnptr;
	DN              trail;
	int             x;
	char 		deleterdn = TRUE;


	if ((argc = service_control (OPT,argc, argv, &modrdn_arg.mra_common)) == -1)
		return;

	for (x = 1; x < argc; x++) {
		if (test_arg (argv[x], "-name",2)) {
			if ((newname = str2rdn (argv[++x])) == NULLRDN) {
				ps_printf (OPT,"invalid RDN %s\n",argv[x]);
				return;
			}
		} else if (test_arg (argv[x],"-delete",2))
			deleterdn = TRUE;
		else if (test_arg (argv[x],"-nodelete",3))
			deleterdn = FALSE;
		else if (move (argv[x]) == OK)
			continue;
		else {
			ps_printf (OPT,"Unknown option %s\n",argv[x]);
			Usage (argv[0]);
			return;
		}
	}

	modrdn_arg.deleterdn = deleterdn;
	modrdn_arg.mra_object = dn;
	if (newname == NULLRDN) {
		ps_print (OPT, "Invalid RDN\n");
		Usage (argv[0]);
		return;
	}
	modrdn_arg.mra_newrdn = newname;

	if (rebind () != OK)
		return;

	/* Strong authentication */
	if (modrdn_arg.mra_common.ca_security != (struct security_parms *) 0)
	{
	struct signature *sign_operation();
	int encode_DAS_ModifyRDNArgumentData();

	modrdn_arg.mra_common.ca_sig =
		sign_operation((caddr_t)&modrdn_arg, encode_DAS_ModifyRDNArgumentData);
	}

	while (ds_modifyrdn (&modrdn_arg, &error) != DS_OK) {
		if (dish_error (OPT, &error) == 0) {
			rdn_free(modrdn_arg.mra_newrdn);
			return;
		}
		modrdn_arg.mra_object = error.ERR_REFERRAL.DSE_ref_candidates->cr_name;
	} 

	ps_print (RPS, "Modify done\n");
	delete_cache (dn);	/* re-cache when next read */
	for (dnptr = dn; dnptr->dn_parent != NULLDN; dnptr = dnptr->dn_parent)
		trail = dnptr;

	dn_comp_free (dnptr);
	trail->dn_parent = dn_comp_new (rdn_cpy (newname));
	rdn_free(modrdn_arg.mra_newrdn);
}