Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F115698151
D30012.id88273.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D30012.id88273.diff
View Options
Index: bin/cp/cp.1
===================================================================
--- bin/cp/cp.1
+++ bin/cp/cp.1
@@ -32,7 +32,7 @@
.\" @(#)cp.1 8.3 (Berkeley) 4/18/94
.\" $FreeBSD$
.\"
-.Dd June 6, 2015
+.Dd April 27, 2021
.Dt CP 1
.Os
.Sh NAME
@@ -84,10 +84,10 @@
.Fl R
option is specified, all symbolic links are followed.
.It Fl P
+No symbolic links are followed.
If the
.Fl R
-option is specified, no symbolic links are followed.
-This is the default.
+option is specified, this is the default.
.It Fl R
If
.Ar source_file
Index: bin/cp/cp.c
===================================================================
--- bin/cp/cp.c
+++ bin/cp/cp.c
@@ -99,7 +99,7 @@
{
struct stat to_stat, tmp_stat;
enum op type;
- int Hflag, Lflag, ch, fts_options, r, have_trailing_slash;
+ int Hflag, Lflag, Pflag, ch, fts_options, r, have_trailing_slash;
char *target;
fts_options = FTS_NOCHDIR | FTS_PHYSICAL;
@@ -108,13 +108,14 @@
switch (ch) {
case 'H':
Hflag = 1;
- Lflag = 0;
+ Lflag = Pflag = 0;
break;
case 'L':
Lflag = 1;
- Hflag = 0;
+ Hflag = Pflag = 0;
break;
case 'P':
+ Pflag = 1;
Hflag = Lflag = 0;
break;
case 'R':
@@ -123,6 +124,7 @@
case 'a':
pflag = 1;
Rflag = 1;
+ Pflag = 1;
Hflag = Lflag = 0;
break;
case 'f':
@@ -145,7 +147,7 @@
break;
case 'r':
rflag = Lflag = 1;
- Hflag = 0;
+ Hflag = Pflag = 0;
break;
case 's':
sflag = 1;
@@ -180,8 +182,10 @@
fts_options |= FTS_LOGICAL;
}
} else {
- fts_options &= ~FTS_PHYSICAL;
- fts_options |= FTS_LOGICAL | FTS_COMFOLLOW;
+ if (!Pflag) {
+ fts_options &= ~FTS_PHYSICAL;
+ fts_options |= FTS_LOGICAL | FTS_COMFOLLOW;
+ }
}
(void)signal(SIGINFO, siginfo);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Apr 28, 7:53 AM (12 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
17827326
Default Alt Text
D30012.id88273.diff (1 KB)
Attached To
Mode
D30012: cp(1): Make -P work without -R as per POSIX
Attached
Detach File
Event Timeline
Log In to Comment