Skip to content

Commit

Permalink
Remove "FILE is a socket(ignored)" message
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Mar 7, 2025
1 parent aca551a commit fbf6999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmirror.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ static void slave(char *slave_path) {
fileop_chmod(fi_want->perm, filename);
}
} else if (fi_want->type== 'S') {
warn("%s: is a socket(ignored)\n", filename);
; // silenty ignore sockets
} else if (fi_want->type == 'C' || fi_want->type == 'B') {
if (!fi_is || fi_is->type != fi_want->type || fi_is->rdev != fi_want->rdev) {
if (fi_is)
Expand Down

0 comments on commit fbf6999

Please sign in to comment.