From: Martin Pool Date: Fri, 25 Jan 2002 10:39:08 +0000 (+0000) Subject: Fix for device nodes. (dann frazier) (Debian #129135) X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5f78da202569ff1a4126c85a497156f5a7604e9a Fix for device nodes. (dann frazier) (Debian #129135) --- diff --git a/flist.c b/flist.c index 7fa13ba9..ab729c80 100644 --- a/flist.c +++ b/flist.c @@ -682,7 +682,7 @@ struct file_struct *make_file(int f, char *fname, struct string_area **ap, file->gid = st.st_gid; file->dev = st.st_dev; file->inode = st.st_ino; -#ifdef HAVE_ST_RDEV +#ifdef HAVE_STRUCT_STAT_ST_RDEV file->rdev = st.st_rdev; #endif