/* * $Id: nbpunrgstr.c,v 1.10 2009-10-29 11:35:58 didg Exp $ * * Copyright (c) 1990,1991 Regents of The University of Michigan. * All Rights Reserved. * * Permission to use, copy, modify, and distribute this software and * its documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appears in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation, and that the name of The University * of Michigan not be used in advertising or publicity pertaining to * distribution of the software without specific, written prior * permission. This software is supplied as is without expressed or * implied warranties of any kind. * * Research Systems Unix Group * The University of Michigan * c/o Mike Clark * 535 W. William Street * Ann Arbor, Michigan * +1-313-763-0525 * netatalk@itd.umich.edu */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif /* HAVE_UNISTD_H */ #include #include #include #include #include static void Usage(char *av0) { char *p; if (( p = strrchr( av0, '/' )) == NULL ) { p = av0; } else { p++; } fprintf( stderr, "Usage: %s [ -A address ] [ -m Mac charset] obj:type@zone\n", p ); exit( 1 ); } int main(int ac, char **av) { char *Obj = NULL, *Type = NULL, *Zone = NULL; char *convname = NULL; struct at_addr addr; int c; charset_t chMac = CH_MAC; extern char *optarg; extern int optind; memset(&addr, 0, sizeof(addr)); while ((c = getopt(ac, av, "A:m:")) != EOF) { switch (c) { case 'A': if (!atalk_aton(optarg, &addr)) { fprintf(stderr, "Bad address.\n"); exit(1); } break; case 'm': if ((charset_t)-1 == (chMac = add_charset(optarg)) ) { fprintf(stderr, "Invalid Mac charset.\n"); exit(1); } break; default: Usage(av[0]); break; } } if (ac - optind != 1) { Usage( av[ 0 ] ); } /* Convert the name */ if ((size_t)(-1) == convert_string_allocate(CH_UNIX, chMac, av[optind], -1, &convname)) convname = av[optind]; /* * Get the name. If Type or Obj aren't specified, error. */ if ( nbp_name( convname, &Obj, &Type, &Zone ) || !Obj || !Type ) { Usage( av[ 0 ] ); } if ( nbp_unrgstr( Obj, Type, Zone, &addr ) < 0 ) { fprintf( stderr, "Can't unregister %s:%s@%s\n", Obj, Type, Zone ? Zone : "*" ); exit( 1 ); } return 0; }