summaryrefslogtreecommitdiff
path: root/tls.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-05-15 19:09:42 +0000
committerWayne Davison <wayned@samba.org>2004-05-15 19:09:42 +0000
commit630e3c408b32b94bfca0420fc9f00be11b685a00 (patch)
tree88214668d85b7949fdf2fefe4d903d91a705fcc5 /tls.c
parent1082b52bd4fbe567b75b6fb15eeefbf7a34c769a (diff)
downloadrsync-630e3c408b32b94bfca0420fc9f00be11b685a00.tar.gz
Whitespace tweaks.
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/tls.c b/tls.c
index 78feae3a..8c2a421b 100644
--- a/tls.c
+++ b/tls.c
@@ -49,17 +49,16 @@ int list_only = 0;
int preserve_perms = 0;
-static void failed (char const *what,
- char const *where)
+static void failed(char const *what, char const *where)
{
- fprintf (stderr, PROGRAM ": %s %s: %s\n",
- what, where, strerror (errno));
- exit (1);
+ fprintf(stderr, PROGRAM ": %s %s: %s\n",
+ what, where, strerror(errno));
+ exit(1);
}
-static void list_file (const char *fname)
+static void list_file(const char *fname)
{
STRUCT_STAT buf;
char permbuf[PERMSTRING_SIZE];
@@ -68,7 +67,7 @@ static void list_file (const char *fname)
char linkbuf[4096];
if (do_lstat(fname, &buf) == -1)
- failed ("stat", fname);
+ failed("stat", fname);
/* The size of anything but a regular file is probably not
* worth thinking about. */
@@ -130,13 +129,13 @@ int
main(int argc, char *argv[])
{
if (argc < 2) {
- fprintf (stderr, "usage: " PROGRAM " DIR ...\n"
- "Trivial file listing program for portably checking rsync\n");
+ fprintf(stderr, "usage: " PROGRAM " DIR ...\n"
+ "Trivial file listing program for portably checking rsync\n");
return 1;
}
for (argv++; *argv; argv++) {
- list_file (*argv);
+ list_file(*argv);
}
return 0;