summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-04-09 00:33:34 +0000
committerWayne Davison <wayned@samba.org>2004-04-09 00:33:34 +0000
commitf26ac1e8cb06e6e0c3f655b41ac5685fe0c0eccc (patch)
tree8a852cef9b85a97ef4afe9d22334065cfdedec8e
parent84a3efa0abf63d0e30909722f5b8331aa4052b4b (diff)
downloadrsync-f26ac1e8cb06e6e0c3f655b41ac5685fe0c0eccc.tar.gz
rsync-f26ac1e8cb06e6e0c3f655b41ac5685fe0c0eccc.tar.bz2
rsync-f26ac1e8cb06e6e0c3f655b41ac5685fe0c0eccc.zip
If we're listing a device, output the major and minor device numbers.
-rw-r--r--tls.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/tls.c b/tls.c
index 5facf2e8..3af402fd 100644
--- a/tls.c
+++ b/tls.c
@@ -1,16 +1,16 @@
/* -*- c-file-style: "linux" -*-
*
* Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
- *
+ *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
* 2 as published by the Free Software Foundation.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* 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.
@@ -86,7 +86,7 @@ static void list_file (const char *fname)
strcpy(linkbuf, " -> ");
/* const-cast required for silly UNICOS headers */
len = readlink((char *) fname, linkbuf+4, sizeof(linkbuf) - 4);
- if (len == -1)
+ if (len == -1)
failed("readlink", fname);
else
/* it's not nul-terminated */
@@ -99,7 +99,7 @@ static void list_file (const char *fname)
if (buf.st_mtime) {
mt = gmtime(&buf.st_mtime);
-
+
sprintf(datebuf, "%04d-%02d-%02d %02d:%02d:%02d",
mt->tm_year + 1900,
mt->tm_mon + 1,
@@ -110,15 +110,16 @@ static void list_file (const char *fname)
} else {
strcpy(datebuf, " ");
}
-
+
/* TODO: Perhaps escape special characters in fname? */
-
-
- /* NB: need to pass size as a double because it might be be
- * too large for a long. */
- printf("%s %12.0f %6ld.%-6ld %6ld %s %s%s\n",
- permbuf, (double)buf.st_size, (long)buf.st_uid,
- (long)buf.st_gid, (long)buf.st_nlink,
+
+ printf("%s ", permbuf);
+ if (IS_DEVICE(buf.st_mode))
+ printf("%6d,%5d", major(buf.st_rdev), minor(buf.st_rdev));
+ else /* NB: use double for size because it might not fit in a long. */
+ printf("%12.0f", (double)buf.st_size);
+ printf(" %6ld.%-6ld %6ld %s %s%s\n",
+ (long)buf.st_uid, (long)buf.st_gid, (long)buf.st_nlink,
datebuf, fname, linkbuf);
}