diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-01-25 07:31:01 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-01-25 07:31:01 +0000 |
| commit | a829865d8e4cbcfca6679a937f3650ba0200952b (patch) | |
| tree | 16fdbe1158a842b20056dd229483483cf16fb157 | |
| parent | 0795a3fd8ea0cc4611292899abcd6c5f598e52f2 (diff) | |
Notes
| -rw-r--r-- | bin/cp/cp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c index d8a2c8dcd424..85cb9665c171 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cp.c,v 1.2 1994/09/24 02:53:41 davidg Exp $ + * $Id: cp.c,v 1.3 1994/12/30 13:12:12 bde Exp $ */ #ifndef lint @@ -370,7 +370,7 @@ copy(argv, type, fts_options) err(1, "%s", to.p_path); } else if (!S_ISDIR(to_stat.st_mode)) { errno = ENOTDIR; - err(1, "%s: %s", to.p_path); + err(1, "%s", to.p_path); } /* * If not -p and directory didn't exist, set it to be |
