/* -*-c-*-
*
- * $Id: tmpdir.c,v 1.2 1999/05/19 20:37:28 mdw Exp $
+ * $Id: tmpdir.c,v 1.5 2004/04/08 01:36:22 mdw Exp $
*
* Choose and check temporary directories
*
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-/*----- Revision history --------------------------------------------------*
- *
- * $Log: tmpdir.c,v $
- * Revision 1.2 1999/05/19 20:37:28 mdw
- * Track gratuitous change in mdwopt interface.
- *
- * Revision 1.1.1.1 1999/04/06 20:12:07 mdw
- * Import new project.
- *
- */
-
/*----- Header files ------------------------------------------------------*/
#include <errno.h>
#include <mLib/quis.h>
#include <mLib/report.h>
-#include "path.h"
+#include "checkpath.h"
/*----- Static variables --------------------------------------------------*/
static uid_t me;
-static struct chkpath cp;
+static struct checkpath cp;
static struct passwd *pw;
/*----- Main code ---------------------------------------------------------*/
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" };
char *p, *q;
char *qq;
- dstr d;
+ dstr d = DSTR_INIT;
int createflag = 1;
/* --- Make sure the parent directory is sane --- *
* safe.
*/
- if (path_check(parent, &cp))
+ if (checkpath(parent, &cp))
return (0);
/* --- See whether the trivial version will work --- */
- dstr_create(&d);
dstr_putf(&d, "%s/%s", parent, base);
if (ok(d.buf, &createflag))
goto good;
static int fullcheck(const char *p)
{
- return (path_check(p, &cp) == 0 && ok(p, 0));
+ return (checkpath(p, &cp) == 0 && ok(p, 0));
}
/* --- @goodtmp@ --- *
cp.cp_what = CP_WRWORLD | CP_WRGRP | CP_WROTHUSR | CP_STICKYOK;
cp.cp_verbose = 0;
cp.cp_report = 0;
- path_setids(&cp);
+ checkpath_setids(&cp);
pw = getpwuid(me);
if (!pw)
die(1, "you don't exist");