char *cp, *user, buf[BUFSIZ], tty[BUFSIZ];
char **argp, **arguments, *vec[MAXARGS];
struct utmpx *utp;
-#ifdef LOCALE
- setlocale(LC_ALL, "");
-#endif
- invo_name = r1bindex (argv[0], '/');
- /* read user profile/context */
- context_read();
+ if (nmh_init(argv[0], 1)) { return 1; }
mts_init (invo_name);
arguments = getarguments (invo_name, argc, argv, 1);
advise(NULL, "unable to create temporary file in %s", get_temp_dir());
return NOTOK;
}
+ (void) m_unlink(tfile); /* Use fd, no longer need the file name. */
if ((child_id = fork()) == NOTOK) {
/* fork error */
advise(NULL, "unable to create temporary file in %s", get_temp_dir());
return NOTOK;
}
+ (void) m_unlink(tfile); /* Use fd, no longer need the file name. */
rewind (stdin);