/*
 *	$Source: /u2/projects/toehold/RCS/go_register.c,v $
 *	$Header: go_register.c,v 1.1 87/02/09 10:43:43 jtkohl Exp $
 */

#ifndef lint
static char *rcsid_go_register_c = "$Header: go_register.c,v 1.1 87/02/09 10:43:43 jtkohl Exp $";
#endif lint

char message[] = "\
You have not registered with Kerberos, the authentication server.\n\
I will run the registration program, which will prompt you for your old\n\
and a new password.  Enter your current password as the 'old' password.\n\
You may type the same password as the 'new' password, or you may change\n\
your password.";
 
main(argc,argv)
int argc;
char **argv;
{
    puts(message);
    execl("/bin/passwd", "passwd", argv[1], 0);
    perror("Couldn't run password program");
    sleep(3);
}
