Searched defs:tofile (Results 1 - 3 of 3) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Ddst_internal.h171 isc_result_t (*tofile)(const dst_key_t *key, const char *directory); member in struct:dst_func
/bind-9.6-ESV-R11/contrib/zkt/
H A Dmisc.c463 ** linkfile (fromfile, tofile)
465 int linkfile (const char *fromfile, const char *tofile) argument
469 /* fprintf (stderr, "linkfile (%s, %s)\n", fromfile, tofile); */
470 if ( (ret = link (fromfile, tofile)) == -1 && errno == EEXIST )
471 if ( unlink (tofile) == 0 )
472 ret = link (fromfile, tofile);
478 ** copyfile (fromfile, tofile, dnskeyfile)
479 ** copy fromfile into tofile.
480 ** Add (optional) the content of dnskeyfile to tofile.
482 int copyfile (const char *fromfile, const char *tofile, cons argument
516 copyzonefile(const char *fromfile, const char *tofile, const char *dnskeyfile) argument
[all...]
H A Dzkt-signer.c974 char tofile[1024]; local
986 snprintf (tofile, sizeof (tofile), "%s/../keyset-%s", dir, domain);
987 if ( cmpfile (fromfile, tofile) != 0 )
990 if ( (ret = copyfile (fromfile, tofile, NULL)) != 0 )

Completed in 15 milliseconds