X-Git-Url: https://git.distorted.org.uk/~mdw/checkpath/blobdiff_plain/cef4f7979a419effd800c8d5360ab7762a0e18a3..d7b5ee0cc2a612023bb20492a75af4a7a23e856b:/tmpdir.c diff --git a/tmpdir.c b/tmpdir.c index 4a2843d..943c4d4 100644 --- a/tmpdir.c +++ b/tmpdir.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tmpdir.c,v 1.2 1999/05/19 20:37:28 mdw Exp $ + * $Id: tmpdir.c,v 1.4 2003/01/25 23:58:44 mdw Exp $ * * Choose and check temporary directories * @@ -29,6 +29,12 @@ /*----- Revision history --------------------------------------------------* * * $Log: tmpdir.c,v $ + * Revision 1.4 2003/01/25 23:58:44 mdw + * Make guts into official library. + * + * Revision 1.3 1999/05/21 22:07:20 mdw + * Take advantage of new dynamic string macros. + * * Revision 1.2 1999/05/19 20:37:28 mdw * Track gratuitous change in mdwopt interface. * @@ -55,12 +61,12 @@ #include #include -#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 ---------------------------------------------------------*/ @@ -131,7 +137,7 @@ static char *trytmp(const char *parent, const char *base) "ABCDEFGHIJKLMNOPQRSTUVWXYZ" }; char *p, *q; char *qq; - dstr d; + dstr d = DSTR_INIT; int createflag = 1; /* --- Make sure the parent directory is sane --- * @@ -142,12 +148,11 @@ static char *trytmp(const char *parent, const char *base) * 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; @@ -193,7 +198,7 @@ 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@ --- * @@ -310,7 +315,7 @@ int main(int argc, char *argv[]) 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");