Searched refs:escaped_name (Results 1 - 1 of 1) sorted by relevance

/freebsd-10-stable/usr.sbin/mtree/
H A Dcreate.c154 char *escaped_name; local
156 escaped_name = calloc(1, p->fts_namelen * 4 + 1);
157 if (escaped_name == NULL)
159 strvis(escaped_name, p->fts_name, VIS_WHITE | VIS_OCTAL | VIS_GLOB);
162 offset = printf("%*s%s", indent, "", escaped_name);
164 offset = printf("%*s %s", indent, "", escaped_name);
166 free(escaped_name);

Completed in 244 milliseconds