summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-05-02 11:13:21 +0000
committerAndrew Tridgell <tridge@samba.org>2001-05-02 11:13:21 +0000
commitefe3037cf5cfba379cffb4068775c75b5b0172db (patch)
treeb2032aa5ed9fbc1d79c18cc996916bacebc9caa5
parentf62c17e3786ac6643981d9ec68a1cd130ffcf149 (diff)
downloadrsync-efe3037cf5cfba379cffb4068775c75b5b0172db.tar.gz
use _S_IFLNK not S_IFLNK
-rw-r--r--flist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/flist.c b/flist.c
index 1082c400..cda35082 100644
--- a/flist.c
+++ b/flist.c
@@ -203,7 +203,7 @@ static void set_filesystem(char *fname)
static int to_wire_mode(mode_t mode)
{
- if (S_ISLNK(mode) && (S_IFLNK != 0120000)) {
+ if (S_ISLNK(mode) && (_S_IFLNK != 0120000)) {
return (mode & ~(_S_IFMT)) | 0120000;
}
return (int)mode;
@@ -211,8 +211,8 @@ static int to_wire_mode(mode_t mode)
static mode_t from_wire_mode(int mode)
{
- if ((mode & (_S_IFMT)) == 0120000 && (S_IFLNK != 0120000)) {
- return (mode & ~(_S_IFMT)) | S_IFLNK;
+ if ((mode & (_S_IFMT)) == 0120000 && (_S_IFLNK != 0120000)) {
+ return (mode & ~(_S_IFMT)) | _S_IFLNK;
}
return (mode_t)mode;
}