summaryrefslogtreecommitdiffstats
path: root/bin/rcp
Commit message (Collapse)AuthorAgeFilesLines
* MFC r320644:allanjude2017-07-041-1/+10
| | | | Add deprecation notices for all rcmd tools
* MFHgjb2016-04-121-1/+1
| | | | Sponsored by: The FreeBSD Foundation
* Add rcp(1) to the rcmds package.gjb2016-02-091-0/+1
| | | | Sponsored by: The FreeBSD Foundation
* Create a rcmds package.gjb2016-01-211-0/+2
| | | | Sponsored by: The FreeBSD Foundation
* Add META_MODE support.sjg2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-081-2/+0
| |
| * Merge sync of headsjg2015-05-271-1/+0
| |\ | |/ |/|
| * Updated dependenciessjg2014-05-161-1/+0
| |
| * Updated dependenciessjg2014-05-101-0/+2
| |
| * Updated dependenciessjg2013-03-111-0/+1
| |
| * Updated dependenciessjg2013-02-161-2/+0
| |
| *---. Sync from headsjg2012-11-042-13/+8
| |\ \ \
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-221-0/+19
| | |_|/ | |/| | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | r* commands are not precious anymorebapt2015-03-041-1/+0
| |/ / |/| |
* | | Fix warnings found by -Wmising-variable-declarations.ed2012-10-191-7/+8
| |/ |/| | | | | | | | | | | | | | | | | | | This self-written compiler warning, which is hopefully going to be committed into LLVM sources soon, warns about potentially missing `static' keywords, similar to -Wmissing-prototypes. - bin/pax: Move external declaration of chdname and s_mask into extern.h. - bin/setfacl: Move setfacl.c-specific stuff out of setfacl.h. - sbin/mount_fusefs: Remove char *progname; use getprogname(). - others: add `static' where possible.
* | None of these programs actually use auth.conf.des2012-06-111-6/+0
|/ | | | MFC after: 1 week
* Remove unused header (libutil.h)marcel2012-05-171-1/+0
|
* Remove duplicated header fileskevlo2011-06-241-1/+0
|
* Change all our own code to use st_*tim instead of st_*timespec.ed2010-03-281-4/+4
| | | | Also remove some local patches to diff(1) which are now unneeded.
* Remove superfluous va_end which was left there in rev 1.38.rdivacky2008-10-281-2/+0
| | | | Approved by: kib (mentor)
* In the error handling path, don't call close(fd) if the error we'recperciva2007-05-221-1/+2
| | | | | | | | handling is that fd = open(foo) is -1. This bug is harmless since close(-1) just returns an error (which the code ignores). Found by: Coverity Prevent(tm) CID: 1503 (in userland test run)
* Fix markup.ru2007-02-271-10/+20
|
* Expand *n't contractions.ru2005-02-131-1/+1
|
* Sync program's usage() with manpage's SYNOPSIS.ru2005-02-091-2/+2
|
* De-kerberize the manpage.ru2005-01-211-24/+3
|
* /*- or .\"- or #- to begin license clauses.imp2005-01-101-0/+1
|
* Remove the clause 3, per berkeley and mail from rwatson representingimp2005-01-101-5/+1
| | | | that nai was OK with all third clause removals.
* Introduce the PRECIOUSPROG knob in bsd.prog.mk, similarru2004-11-031-1/+1
| | | | | | | | to PRECIOUSLIB from bsd.lib.mk. The side effect of this is making installing the world under jail(8) possible by using another knob, NOFSCHG. Reviewed by: oliver
* Deal with double whitespace.ru2004-07-031-4/+4
|
* Mechanically kill hard sentence breaks.ru2004-07-021-1/+2
|
* Remove clause 3 from the UCB licenses.markm2004-04-063-12/+0
| | | | OK'ed by: imp, core
* Turn malloc+snprintf into asnprintf.markm2003-10-141-14/+10
| | | | Submitted by: David Hill <hill at phobia dot em ess>
* Fix a bazillion warnings. This makes almost the whole of src/bin/*markm2003-05-031-11/+13
| | | | | | WARNS=6, std=c99 clean. Tested on: i386, alpha
* Make count a size_t as that is what is compared against and how it is used.obrien2003-05-021-1/+2
|
* Quiet warnings about copyright[].obrien2003-05-011-2/+1
|
* Dekerberise. The corresponding userland stuff has been dekerberisedmarkm2002-10-163-169/+6
| | | | for ages, and no-one seems to have noticed. Viva PAM!
* Clean up use of <stdarg.h> macros: always call va_end after va_start,tjr2002-10-061-2/+6
| | | | | | reset with a call to va_start before each use of the va_list. Obtained from: NetBSD
* While removing a memory leak, rev 1.32 introduced acharnier2002-10-061-16/+11
| | | | | free-memory-and-reuse-it-after. Correct both problems and make rcp -r work again under /etc/malloc.conf -> AJ.
* Use %jd in format string and cast argument to intmax_t instead of usingtjr2002-10-062-4/+3
| | | | | | | %qd to print struct stat.st_size. Remove WARNS=0 and WFORMAT=0 from Makefile. Tested on: alpha, sparc64, i386
* Mark the signo as __unused in a lazy signal handler.jmallett2002-09-291-1/+1
|
* IPv6 support for rcp.ume2002-08-092-22/+42
| | | | | | You cannot specify a raw IPv6 address for now. MFC after: 1 week
* err() is documented as allowing NULL for the format string but GCC isn'tdillon2002-07-101-4/+4
| | | | happy about it any more so change the usage to make buildworld work again.
* Consistently use FBSDIDobrien2002-06-302-4/+4
|
* Use size_t consistently and complete some uncompleted code resulting in ajmallett2002-06-202-3/+6
| | | | | | | memory leak by assigning and freeing a variable appropriately as well as keeping track of the amount of allocated ram properly. MFC after: 1 month
* Use <paths.h> rather than "pathnames.h", and fix a couple of whitespace nits.des2002-05-082-45/+10
| | | | Sponsored by: DARPA, NAI Labs
* Replaced exists() tests with two equivalent defined().ru2002-04-181-1/+1
| | | | | LIBDIR is defined in bsd.own.mk but sys.mk no longer includes bsd.own.mk as of revision 1.60.
* Use `The .Nm utility'charnier2002-04-161-6/+9
|
* Correct inadvertent style botches in previous commit.kris2002-02-041-2/+1
|
* Lock down with WFORMAT=1 except those directories with unfixed warnings.kris2002-02-041-1/+3
| | | | Tested on i386 and alpha.
* o __P has been reovedimp2002-02-023-78/+33
| | | | | | | | | o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are.
OpenPOWER on IntegriCloud