MCPcopy Create free account
hub / github.com/RsyncProject/rsync / tls_usage

Function tls_usage

tls.c:251–268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249};
250
251static void NORETURN tls_usage(int ret)
252{
253 FILE *F = ret ? stderr : stdout;
254 fprintf(F,"usage: " PROGRAM " [OPTIONS] FILE ...\n");
255 fprintf(F,"Trivial file listing program for portably checking rsync\n");
256 fprintf(F,"\nOptions:\n");
257 fprintf(F," -U, --atimes display access (last-used) times\n");
258#ifdef SUPPORT_CRTIMES
259 fprintf(F," -N, --crtimes display create times (newness)\n");
260#endif
261 fprintf(F," -l, --link-times display the time on a symlink\n");
262 fprintf(F," -L, --link-owner display the owner+group on a symlink\n");
263#ifdef SUPPORT_XATTRS
264 fprintf(F," -f, --fake-super display attributes including fake-super xattrs\n");
265#endif
266 fprintf(F," -h, --help show this help\n");
267 exit(ret);
268}
269
270int
271main(int argc, char *argv[])

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected