mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-09-20 07:04:14 +00:00
*** empty log message ***
This commit is contained in:
+140
-77
@@ -100,7 +100,7 @@ struct saved_dir_info
|
|||||||
int mode;
|
int mode;
|
||||||
int atime;
|
int atime;
|
||||||
int mtime;
|
int mtime;
|
||||||
saved_dir_info *next;
|
struct saved_dir_info *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct saved_dir_info *saved_dir_info_head;
|
struct saved_dir_info *saved_dir_info_head;
|
||||||
@@ -146,8 +146,10 @@ extract_archive()
|
|||||||
struct saved_dir_info *tmp;
|
struct saved_dir_info *tmp;
|
||||||
/* int end_nulls; */
|
/* int end_nulls; */
|
||||||
char **longp;
|
char **longp;
|
||||||
|
char *bp;
|
||||||
static char *longname;
|
static char *longname;
|
||||||
static char *longlink;
|
static char *longlink;
|
||||||
|
int bumplongs;
|
||||||
|
|
||||||
saverec(&head); /* Make sure it sticks around */
|
saverec(&head); /* Make sure it sticks around */
|
||||||
userec(head); /* And go past it in the archive */
|
userec(head); /* And go past it in the archive */
|
||||||
@@ -174,7 +176,8 @@ extract_archive()
|
|||||||
* the header record.
|
* the header record.
|
||||||
*/
|
*/
|
||||||
skipcrud = 0;
|
skipcrud = 0;
|
||||||
while (!f_absolute_paths && '/' == head->header.name[skipcrud]) {
|
while (!f_absolute_paths
|
||||||
|
&& '/' == (longname ? longname : head->header.name)[skipcrud]) {
|
||||||
static int warned_once = 0;
|
static int warned_once = 0;
|
||||||
|
|
||||||
skipcrud++; /* Force relative path */
|
skipcrud++; /* Force relative path */
|
||||||
@@ -183,6 +186,9 @@ extract_archive()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bumplongs = (head->header.linkflag != LF_LONGNAME
|
||||||
|
&& head->header.linkflag != LF_LONGLINK);
|
||||||
|
|
||||||
switch (head->header.linkflag) {
|
switch (head->header.linkflag) {
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -299,8 +305,10 @@ extract_archive()
|
|||||||
* the size in the open call that creates them.
|
* the size in the open call that creates them.
|
||||||
*/
|
*/
|
||||||
if (head->header.linkflag == LF_CONTIG)
|
if (head->header.linkflag == LF_CONTIG)
|
||||||
fd = open(skipcrud+head->header.name, openflag | O_CTG,
|
fd = open((longname ? longname : head->header.name)
|
||||||
hstat.st_mode, hstat.st_size);
|
+ skipcrud,
|
||||||
|
openflag | O_CTG,
|
||||||
|
hstat.st_mode, hstat.st_size);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
@@ -309,21 +317,29 @@ extract_archive()
|
|||||||
* On raw V7 we won't let them specify -k (f_keep), but
|
* On raw V7 we won't let them specify -k (f_keep), but
|
||||||
* we just bull ahead and create the files.
|
* we just bull ahead and create the files.
|
||||||
*/
|
*/
|
||||||
fd = creat(skipcrud+head->header.name,
|
fd = creat((longname
|
||||||
hstat.st_mode);
|
? longname
|
||||||
|
: head->header.name) + skipcrud,
|
||||||
|
hstat.st_mode);
|
||||||
#else
|
#else
|
||||||
/*
|
/*
|
||||||
* With 3-arg open(), we can do this up right.
|
* With 3-arg open(), we can do this up right.
|
||||||
*/
|
*/
|
||||||
fd = open(skipcrud+head->header.name, openflag,
|
fd = open((longname
|
||||||
hstat.st_mode);
|
? longname
|
||||||
|
: head->header.name) + skipcrud,
|
||||||
|
openflag, hstat.st_mode);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud)
|
||||||
goto again_file;
|
goto again_file;
|
||||||
msg_perror("Could not create file %s",skipcrud+head->header.name);
|
msg_perror("Could not create file %s",
|
||||||
|
skipcrud
|
||||||
|
+(longname ? longname : head->header.name));
|
||||||
if (head->header.isextended)
|
if (head->header.isextended)
|
||||||
skip_extended_headers();
|
skip_extended_headers();
|
||||||
skip_file((long)hstat.st_size);
|
skip_file((long)hstat.st_size);
|
||||||
@@ -348,7 +364,7 @@ extract_archive()
|
|||||||
bcopy(skipcrud+head->header.name, name, namelen);
|
bcopy(skipcrud+head->header.name, name, namelen);
|
||||||
size = hstat.st_size;
|
size = hstat.st_size;
|
||||||
extract_sparse_file(fd, &size, hstat.st_size,
|
extract_sparse_file(fd, &size, hstat.st_size,
|
||||||
name);
|
longname ? longname : name);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
for (size = hstat.st_size;
|
for (size = hstat.st_size;
|
||||||
@@ -359,7 +375,9 @@ extract_archive()
|
|||||||
numbytes;*/
|
numbytes;*/
|
||||||
|
|
||||||
if(f_multivol) {
|
if(f_multivol) {
|
||||||
save_name=head->header.name;
|
save_name=(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name);
|
||||||
save_totsize=hstat.st_size;
|
save_totsize=hstat.st_size;
|
||||||
save_sizeleft=size;
|
save_sizeleft=size;
|
||||||
}
|
}
|
||||||
@@ -405,9 +423,15 @@ extract_archive()
|
|||||||
* Print it, skip to next file in archive.
|
* Print it, skip to next file in archive.
|
||||||
*/
|
*/
|
||||||
if(check<0)
|
if(check<0)
|
||||||
msg_perror("couldn't write to file %s",skipcrud+head->header.name);
|
msg_perror("couldn't write to file %s",
|
||||||
|
(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud);
|
||||||
else
|
else
|
||||||
msg("could only write %d of %d bytes to file %s",written,check,skipcrud+head->header.name);
|
msg("could only write %d of %d bytes to file %s",
|
||||||
|
written,check,(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud);
|
||||||
skip_file((long)(size - written));
|
skip_file((long)(size - written));
|
||||||
break; /* Still do the close, mod time, chmod, etc */
|
break; /* Still do the close, mod time, chmod, etc */
|
||||||
}
|
}
|
||||||
@@ -444,7 +468,10 @@ extract_archive()
|
|||||||
}*/
|
}*/
|
||||||
check = close(fd);
|
check = close(fd);
|
||||||
if (check < 0) {
|
if (check < 0) {
|
||||||
msg_perror("Error while closing %s",skipcrud+head->header.name);
|
msg_perror("Error while closing %s",
|
||||||
|
(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -457,9 +484,15 @@ extract_archive()
|
|||||||
* user; if running as root, we extract as the original owner.
|
* user; if running as root, we extract as the original owner.
|
||||||
*/
|
*/
|
||||||
if (we_are_root || f_do_chown) {
|
if (we_are_root || f_do_chown) {
|
||||||
if (chown(skipcrud+head->header.name, hstat.st_uid,
|
if (chown((longname
|
||||||
hstat.st_gid) < 0) {
|
? longname
|
||||||
msg_perror("cannot chown file %s to uid %d gid %d",skipcrud+head->header.name,hstat.st_uid,hstat.st_gid);
|
: head->header.name) + skipcrud,
|
||||||
|
hstat.st_uid, hstat.st_gid) < 0) {
|
||||||
|
msg_perror("cannot chown file %s to uid %d gid %d",
|
||||||
|
(longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud,
|
||||||
|
hstat.st_uid,hstat.st_gid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -476,9 +509,11 @@ extract_archive()
|
|||||||
acc_upd_times[0]=hstat.st_atime;
|
acc_upd_times[0]=hstat.st_atime;
|
||||||
else acc_upd_times[0] = now; /* Accessed now */
|
else acc_upd_times[0] = now; /* Accessed now */
|
||||||
acc_upd_times[1] = hstat.st_mtime; /* Mod'd */
|
acc_upd_times[1] = hstat.st_mtime; /* Mod'd */
|
||||||
if (utime(skipcrud+head->header.name,
|
if (utime((longname
|
||||||
acc_upd_times) < 0) {
|
? longname
|
||||||
msg_perror("couldn't change access and modification times of %s",skipcrud+head->header.name);
|
: head->header.name) + skipcrud,
|
||||||
|
acc_upd_times) < 0) {
|
||||||
|
msg_perror("couldn't change access and modification times of %s",(longname ? longname : head->header.name) + skipcrud);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* We do the utime before the chmod because some versions of
|
/* We do the utime before the chmod because some versions of
|
||||||
@@ -500,9 +535,11 @@ extract_archive()
|
|||||||
*/
|
*/
|
||||||
if ((!f_keep)
|
if ((!f_keep)
|
||||||
|| (hstat.st_mode & (S_ISUID|S_ISGID|S_ISVTX))) {
|
|| (hstat.st_mode & (S_ISUID|S_ISGID|S_ISVTX))) {
|
||||||
if (chmod(skipcrud+head->header.name,
|
if (chmod((longname ? longname : head->header.name) + skipcrud,
|
||||||
notumask & (int)hstat.st_mode) < 0) {
|
notumask & (int)hstat.st_mode) < 0) {
|
||||||
msg_perror("cannot change mode of file %s to %ld",skipcrud+head->header.name,notumask & (int)hstat.st_mode);
|
msg_perror("cannot change mode of file %s to %ld",
|
||||||
|
(longname ? longname : head->header.name) + skipcrud,
|
||||||
|
notumask & (int)hstat.st_mode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -514,35 +551,38 @@ extract_archive()
|
|||||||
{
|
{
|
||||||
struct stat st1,st2;
|
struct stat st1,st2;
|
||||||
|
|
||||||
check = link (head->header.linkname,
|
check = link (longlink ? longlink : head->header.linkname,
|
||||||
skipcrud+head->header.name);
|
(longname ? longname : head->header.name) + skipcrud);
|
||||||
if (check == 0)
|
if (check == 0)
|
||||||
break;
|
break;
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs((longname ? longname : head->header.name) + skipcrud))
|
||||||
goto again_link;
|
goto again_link;
|
||||||
if(f_gnudump && errno==EEXIST)
|
if(f_gnudump && errno==EEXIST)
|
||||||
break;
|
break;
|
||||||
if( stat(head->header.linkname, &st1) == 0
|
if(stat(longlink ? longlink : head->header.linkname, &st1) == 0
|
||||||
&& stat(skipcrud+head->header.name, &st2)==0
|
&& stat((longname ? longname : head->header.name) + skipcrud, &st2)==0
|
||||||
&& st1.st_dev==st2.st_dev
|
&& st1.st_dev==st2.st_dev
|
||||||
&& st1.st_ino==st2.st_ino)
|
&& st1.st_ino==st2.st_ino)
|
||||||
break;
|
break;
|
||||||
msg_perror("Could not link %s to %s",
|
msg_perror("Could not link %s to %s",
|
||||||
skipcrud+head->header.name,head->header.linkname);
|
(longname ? longname : head->header.name) + skipcrud,
|
||||||
|
longlink ? longlink : longlink,
|
||||||
|
head->header.linkname);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef S_ISLNK
|
#ifdef S_ISLNK
|
||||||
case LF_SYMLINK:
|
case LF_SYMLINK:
|
||||||
again_symlink:
|
again_symlink:
|
||||||
check = symlink(head->header.linkname,
|
check = symlink(longlink ? longlink : head->header.linkname,
|
||||||
skipcrud+head->header.name);
|
(longname ? longname : head->header.name) + skipcrud);
|
||||||
/* FIXME, don't worry uid, gid, etc... */
|
/* FIXME, don't worry uid, gid, etc... */
|
||||||
if (check == 0)
|
if (check == 0)
|
||||||
break;
|
break;
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs((longname ? longname : head->header.name) + skipcrud))
|
||||||
goto again_symlink;
|
goto again_symlink;
|
||||||
msg_perror("Could not create symlink to %s",head->header.linkname);
|
msg_perror("Could not create symlink to %s",
|
||||||
|
longlink ? longlink : head->header.linkname);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -558,12 +598,16 @@ extract_archive()
|
|||||||
#endif
|
#endif
|
||||||
#if defined(S_IFCHR) || defined(S_IFBLK)
|
#if defined(S_IFCHR) || defined(S_IFBLK)
|
||||||
make_node:
|
make_node:
|
||||||
check = mknod(skipcrud+head->header.name,
|
check = mknod((longname ? longname: head->header.name) + skipcrud,
|
||||||
(int) hstat.st_mode, (int) hstat.st_rdev);
|
(int) hstat.st_mode, (int) hstat.st_rdev);
|
||||||
if (check != 0) {
|
if (check != 0) {
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs((longname
|
||||||
|
? longname
|
||||||
|
: head->header.name) + skipcrud))
|
||||||
goto make_node;
|
goto make_node;
|
||||||
msg_perror("Could not make %s",skipcrud+head->header.name);
|
msg_perror("Could not make %s",
|
||||||
|
(longname ? longname : head->header.name)
|
||||||
|
+ skipcrud);
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
goto set_filestat;
|
goto set_filestat;
|
||||||
@@ -573,24 +617,29 @@ extract_archive()
|
|||||||
/* If local system doesn't support FIFOs, use default case */
|
/* If local system doesn't support FIFOs, use default case */
|
||||||
case LF_FIFO:
|
case LF_FIFO:
|
||||||
make_fifo:
|
make_fifo:
|
||||||
check = mkfifo(skipcrud+head->header.name,
|
check = mkfifo((longname ? longname : head->header.name) + skipcrud,
|
||||||
(int) hstat.st_mode);
|
(int) hstat.st_mode);
|
||||||
if (check != 0) {
|
if (check != 0) {
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs((longname ? longname : head->header.name) + skipcrud))
|
||||||
goto make_fifo;
|
goto make_fifo;
|
||||||
msg_perror("Could not make %s",skipcrud+head->header.name);
|
msg_perror("Could not make %s",
|
||||||
break;
|
(longname ? longname : head->header.name) + skipcrud);
|
||||||
|
break;
|
||||||
};
|
};
|
||||||
goto set_filestat;
|
goto set_filestat;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
case LF_DIR:
|
case LF_DIR:
|
||||||
case LF_DUMPDIR:
|
case LF_DUMPDIR:
|
||||||
namelen = strlen(skipcrud+head->header.name)-1;
|
namelen = strlen(longname ? longname : head->header.name)
|
||||||
|
+ skipcrud - 1;
|
||||||
really_dir:
|
really_dir:
|
||||||
/* Check for trailing /, and zap as many as we find. */
|
/* Check for trailing /, and zap as many as we find. */
|
||||||
while (namelen && head->header.name[skipcrud+namelen] == '/')
|
while (namelen
|
||||||
head->header.name[skipcrud+namelen--] = '\0';
|
&& (longname
|
||||||
|
? longname
|
||||||
|
: head->header.name)[skipcrud+namelen] == '/')
|
||||||
|
(longname ? longname : head->header.name)[skipcrud+namelen--] = '\0';
|
||||||
if(f_gnudump) { /* Read the entry and delete files
|
if(f_gnudump) { /* Read the entry and delete files
|
||||||
that aren't listed in the archive */
|
that aren't listed in the archive */
|
||||||
gnu_restore(skipcrud);
|
gnu_restore(skipcrud);
|
||||||
@@ -600,23 +649,23 @@ extract_archive()
|
|||||||
|
|
||||||
|
|
||||||
again_dir:
|
again_dir:
|
||||||
check = mkdir(skipcrud+head->header.name,
|
check = mkdir(skipcrud+(longname ? longname : head->header.name),
|
||||||
(we_are_root ? 0 : 0300) | (int)hstat.st_mode);
|
(we_are_root ? 0 : 0300) | (int)hstat.st_mode);
|
||||||
if (check != 0) {
|
if (check != 0) {
|
||||||
struct stat st1;
|
struct stat st1;
|
||||||
|
|
||||||
if (make_dirs(skipcrud+head->header.name))
|
if (make_dirs(skipcrud+(longname ? longname : head->header.name)))
|
||||||
goto again_dir;
|
goto again_dir;
|
||||||
/* If we're trying to create '.', let it be. */
|
/* If we're trying to create '.', let it be. */
|
||||||
if (head->header.name[skipcrud+namelen] == '.' &&
|
if ((longname ? longname : head->header.name)[skipcrud+namelen] == '.' &&
|
||||||
(namelen==0 ||
|
(namelen==0 ||
|
||||||
head->header.name[skipcrud+namelen-1]=='/'))
|
(longname ? longname : head->header.name)[skipcrud+namelen-1]=='/'))
|
||||||
goto check_perms;
|
goto check_perms;
|
||||||
if( errno==EEXIST
|
if( errno==EEXIST
|
||||||
&& stat(skipcrud+head->header.name,&st1)==0
|
&& stat(skipcrud+(longname ? longname : head->header.name),&st1)==0
|
||||||
&& (S_ISDIR(st1.st_mode)))
|
&& (S_ISDIR(st1.st_mode)))
|
||||||
break;
|
break;
|
||||||
msg_perror("Could not create directory %s",skipcrud+head->header.name);
|
msg_perror("Could not create directory %s",skipcrud+(longname ? longname : head->header.name));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -624,14 +673,14 @@ extract_archive()
|
|||||||
if (!we_are_root && 0300 != (0300 & (int) hstat.st_mode)) {
|
if (!we_are_root && 0300 != (0300 & (int) hstat.st_mode)) {
|
||||||
hstat.st_mode |= 0300;
|
hstat.st_mode |= 0300;
|
||||||
msg("Added write and execute permission to directory %s",
|
msg("Added write and execute permission to directory %s",
|
||||||
skipcrud+head->header.name);
|
skipcrud+(longname ? longname : head->header.name));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (f_modified)
|
if (f_modified)
|
||||||
goto set_filestat;
|
goto set_filestat;
|
||||||
tmp = malloc (sizeof (struct saved_dir_info));
|
tmp = (struct saved_dir_info *) malloc (sizeof (struct saved_dir_info));
|
||||||
tmp->path = malloc (strlen (skipcrud + head->header.name) + 1);
|
tmp->path = malloc (strlen (skipcrud + (longname ? longname : head->header.name)) + 1);
|
||||||
strcpy (tmp->path, skipcrud + head->header.name);
|
strcpy (tmp->path, skipcrud + (longname ? longname : head->header.name));
|
||||||
tmp->mode = hstat.st_mode;
|
tmp->mode = hstat.st_mode;
|
||||||
tmp->atime = hstat.st_atime;
|
tmp->atime = hstat.st_atime;
|
||||||
tmp->mtime = hstat.st_mtime;
|
tmp->mtime = hstat.st_mtime;
|
||||||
@@ -639,7 +688,7 @@ extract_archive()
|
|||||||
saved_dir_info_head = tmp;
|
saved_dir_info_head = tmp;
|
||||||
case LF_VOLHDR:
|
case LF_VOLHDR:
|
||||||
if(f_verbose) {
|
if(f_verbose) {
|
||||||
printf("Reading %s\n",head->header.name);
|
printf("Reading %s\n",longname ? longname : head->header.name);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -656,25 +705,39 @@ extract_archive()
|
|||||||
longp = &longname;
|
longp = &longname;
|
||||||
goto extract_long;
|
goto extract_long;
|
||||||
|
|
||||||
case LF_LONGLINK
|
case LF_LONGLINK:
|
||||||
longp = &longlink;
|
longp = &longlink;
|
||||||
extract_long:
|
extract_long:
|
||||||
|
|
||||||
if (*longp)
|
if (*longp)
|
||||||
free (*longp);
|
free (*longp);
|
||||||
*longp = ck_malloc (hstat.st_size);
|
bp = *longp = (char *) ck_malloc (hstat.st_size);
|
||||||
|
|
||||||
/* This loop is copied from the extract_file label above;
|
|
||||||
as a result, some of the variable names (like `written')
|
|
||||||
might be confusing. */
|
|
||||||
for (size = hstat.st_size;
|
for (size = hstat.st_size;
|
||||||
size > 0;
|
size > 0;
|
||||||
size -= written)
|
size -= written)
|
||||||
{
|
{
|
||||||
|
data = findrec ()->charptr;
|
||||||
|
if (data == NULL)
|
||||||
|
{
|
||||||
|
msg ("Unexpected EOF on archive file");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
written = endofrecs () ->charptr - data;
|
||||||
|
if (written > size)
|
||||||
|
written = size;
|
||||||
|
|
||||||
|
bcopy (data, bp, written);
|
||||||
|
bp += written;
|
||||||
}
|
userec ((union record *) (data + written - 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bumplongs)
|
||||||
|
{
|
||||||
|
longname = 0;
|
||||||
|
longlink = 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* We don't need to save it any longer. */
|
/* We don't need to save it any longer. */
|
||||||
saverec((union record **) 0); /* Unsave it */
|
saverec((union record **) 0); /* Unsave it */
|
||||||
@@ -794,28 +857,28 @@ extract_sparse_file(fd, sizeleft, totalsize, name)
|
|||||||
void restore_saved_dir_info ()
|
void restore_saved_dir_info ()
|
||||||
{
|
{
|
||||||
time_t acc_upd_times[2];
|
time_t acc_upd_times[2];
|
||||||
saved_dir_info *tmp;
|
struct saved_dir_info *tmp;
|
||||||
|
|
||||||
while (saved_info_head != NULL)
|
while (saved_dir_info_head != NULL)
|
||||||
{
|
{
|
||||||
/* fixme if f_gnudump should set ctime too, but how? */
|
/* fixme if f_gnudump should set ctime too, but how? */
|
||||||
if(f_gnudump)
|
if(f_gnudump)
|
||||||
acc_upd_times[0]=saved_info_head -> atime;
|
acc_upd_times[0]=saved_dir_info_head -> atime;
|
||||||
else acc_upd_times[0] = now; /* Accessed now */
|
else acc_upd_times[0] = now; /* Accessed now */
|
||||||
acc_upd_times[1] = saved_info_head -> mtime; /* Mod'd */
|
acc_upd_times[1] = saved_dir_info_head -> mtime; /* Mod'd */
|
||||||
if (utime(saved_info_head -> path, acc_upd_times) < 0) {
|
if (utime(saved_dir_info_head -> path, acc_upd_times) < 0) {
|
||||||
msg_perror("couldn't change access and modification times of %s",
|
msg_perror("couldn't change access and modification times of %s",
|
||||||
saved_info_head -> path);
|
saved_dir_info_head -> path);
|
||||||
}
|
}
|
||||||
if ((!f_keep) || (saved_info_head -> mode & (S_ISUID|S_ISGID|S_ISVTX)))
|
if ((!f_keep) || (saved_dir_info_head -> mode & (S_ISUID|S_ISGID|S_ISVTX)))
|
||||||
{
|
{
|
||||||
if (chmod(saved_info_head -> path,
|
if (chmod(saved_dir_info_head -> path,
|
||||||
notumask & saved_info_head -> mode) < 0) {
|
notumask & saved_dir_info_head -> mode) < 0) {
|
||||||
msg_perror("cannot change mode of file %s to %ld",
|
msg_perror("cannot change mode of file %s to %ld",
|
||||||
saved_info_head -> path,
|
saved_dir_info_head -> path,
|
||||||
notumask & saved_info_head -> mode);
|
notumask & saved_dir_info_head -> mode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
saved_info_head = saved_info_head -> next;
|
saved_dir_info_head = saved_dir_info_head -> next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user