HomeSort by: relevance | last modified time | path
    Searched defs:digestbuf (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.sbin/mtree/
compare.c 143 char *digestbuf; local in function:compare
438 if ((digestbuf = MD5File(p->fts_accpath, NULL)) == NULL) {
444 if (strcmp(s->md5digest, digestbuf)) {
449 tab, MD5KEY, s->md5digest, digestbuf);
452 free(digestbuf);
458 if ((digestbuf = RMD160File(p->fts_accpath, NULL)) == NULL) {
464 if (strcmp(s->rmd160digest, digestbuf)) {
469 tab, RMD160KEY, s->rmd160digest, digestbuf);
472 free(digestbuf);
478 if ((digestbuf = SHA1File(p->fts_accpath, NULL)) == NULL)
    [all...]
create.c 180 char *digestbuf; local in function:dosum
185 digestbuf = (*func)(p->fts_accpath, NULL);
186 if (digestbuf != NULL) {
187 output(fp, indent, offset, "%s=%s", key, digestbuf);
188 free(digestbuf);

Completed in 35 milliseconds