diff options
Diffstat (limited to 'bin/rm')
-rw-r--r-- | bin/rm/rm.1 | 4 | ||||
-rw-r--r-- | bin/rm/rm.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/bin/rm/rm.1 b/bin/rm/rm.1 index 0ffb00e..2235b3b 100644 --- a/bin/rm/rm.1 +++ b/bin/rm/rm.1 @@ -32,7 +32,7 @@ .\" @(#)rm.1 8.5 (Berkeley) 12/5/94 .\" $FreeBSD$ .\" -.Dd September 29, 2005 +.Dd October 30, 2006 .Dt RM 1 .Os .Sh NAME @@ -88,6 +88,8 @@ yet provides almost the same level of protection against mistakes. Overwrite regular files before deleting them. Files are overwritten three times, first with the byte pattern 0xff, then 0x00, and then 0xff again, before they are deleted. +Files with multiple links will not be overwritten. +.Pp Specifying this flag for a read only file will cause .Nm to generate an error message and exit. diff --git a/bin/rm/rm.c b/bin/rm/rm.c index 614479d..c311b6e 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -400,6 +400,11 @@ rm_overwrite(char *file, struct stat *sbp) } if (!S_ISREG(sbp->st_mode)) return (1); + if (sbp->st_nlink > 1) { + warnx("%s (inode %u): not overwritten due to multiple links", + file, sbp->st_ino); + return (1); + } if ((fd = open(file, O_WRONLY, 0)) == -1) goto err; if (fstatfs(fd, &fsb) == -1) |