summaryrefslogtreecommitdiff
path: root/tls.c
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-11-27 07:56:33 +0000
committerMartin Pool <mbp@samba.org>2001-11-27 07:56:33 +0000
commit1336e4146079b92460fcfd67cbec5ed8ad7bdafa (patch)
treed8ed060e36050acd1777ed2c18e72dfe66de6661 /tls.c
parent7c1b7890d36774133ede2756e687bd0c007cc3ae (diff)
downloadrsync-1336e4146079b92460fcfd67cbec5ed8ad7bdafa.tar.gz
Show symlink targets
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/tls.c b/tls.c
index 2409c538..93a8e1a5 100644
--- a/tls.c
+++ b/tls.c
@@ -66,6 +66,7 @@ static void list_file (const char *fname)
char permbuf[PERMSTRING_SIZE];
struct tm *mt;
char datebuf[50];
+ char linkbuf[4096];
if (do_lstat(fname, &buf) == -1)
failed ("stat", fname);
@@ -82,6 +83,10 @@ static void list_file (const char *fname)
buf.st_mode &= ~0777;
buf.st_mtime = (time_t)0;
buf.st_uid = buf.st_gid = 0;
+ strcpy(linkbuf, " -> ");
+ readlink(fname, linkbuf+4, sizeof(linkbuf) - 4);
+ } else {
+ linkbuf[0] = 0;
}
permstring(permbuf, buf.st_mode);
@@ -105,10 +110,10 @@ static void list_file (const char *fname)
/* NB: need to pass size as a double because it might be be
* too large for a long. */
- printf("%s %12.0f %6d.%-6d %s %s\n",
+ printf("%s %12.0f %6d.%-6d %s %s%s\n",
permbuf, (double) buf.st_size,
buf.st_uid, buf.st_gid,
- datebuf, fname);
+ datebuf, fname, linkbuf);
}