/* This file is: update.c -
 * SUID binary wrapper for the make_changes shell script
 * for DIMACS Info Service.
 *
 * GEA 9/22/92
 */

#define PROGRAM "/dimacs/u3/ftp/pub/dimacs/maint/make_changes"
#include <stdio.h>

main(argc, argv)
     int argc;
     char *argv[];
     
{
  setuid(0);  /* need this for rdist to work */
  execv(PROGRAM, argv);
  fprintf(stderr, "execv of %s failed\n", PROGRAM);
  exit(-1);
}
