summaryrefslogtreecommitdiff
path: root/tls.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-04-25 20:23:34 +0000
committerWayne Davison <wayned@samba.org>2006-04-25 20:23:34 +0000
commit0f78b81511be65d8fe21af1e6ac674f9e80ac29d (patch)
tree94c0e2c6ede275cc4374e8f2a5286f8ea8a6cdba /tls.c
parentd051056f921f465c487a85f9fa29a2324332bc4b (diff)
downloadrsync-0f78b81511be65d8fe21af1e6ac674f9e80ac29d.tar.gz
- Updated the address for the FSF in the opening comment.
- Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files).
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/tls.c b/tls.c
index 569c55b2..2f5b6b44 100644
--- a/tls.c
+++ b/tls.c
@@ -1,6 +1,8 @@
-/* -*- c-file-style: "linux" -*-
+/*
+ * Trivial ls for comparing two directories after running an rsync.
*
- * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
+ * Copyright (C) 2003, 2004, 2005 Wayne Davison
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
@@ -13,15 +15,10 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/**
- * @file tls.c
- *
- * Trivial @c ls for comparing two directories after running an rsync.
- *
- * The problem with using the system's own ls is that some features
+/* The problem with using the system's own ls is that some features
* have little quirks that make directories look different when for
* our purposes they're the same -- for example, the BSD braindamage
* about setting the mode on symlinks based on your current umask.
@@ -34,9 +31,7 @@
*
* A key requirement for this program is that the output be "very
* reproducible." So we mask away information that can accidentally
- * change.
- **/
-
+ * change. */
#include "rsync.h"
@@ -48,7 +43,6 @@ int read_only = 1;
int list_only = 0;
int preserve_perms = 0;
-
static void failed(char const *what, char const *where)
{
fprintf(stderr, PROGRAM ": %s %s: %s\n",
@@ -56,8 +50,6 @@ static void failed(char const *what, char const *where)
exit(1);
}
-
-
static void list_file(const char *fname)
{
STRUCT_STAT buf;
@@ -124,7 +116,6 @@ static void list_file(const char *fname)
datebuf, fname, linkbuf);
}
-
int
main(int argc, char *argv[])
{