summaryrefslogtreecommitdiffstats
path: root/bin/rcp
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 00:07:29 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 00:07:29 +0000
commit188803394908f222ab3ed8ec32331eb6dd00fd2d (patch)
treeac48fd8c79dd9f0b338762a1129b83587ab3a39f /bin/rcp
parent8737971a6da37e8fb1df8b8129813b45db5d6261 (diff)
downloadFreeBSD-src-188803394908f222ab3ed8ec32331eb6dd00fd2d.zip
FreeBSD-src-188803394908f222ab3ed8ec32331eb6dd00fd2d.tar.gz
Remove trailing whitespace.
Reviewed by: phk
Diffstat (limited to 'bin/rcp')
-rw-r--r--bin/rcp/rcp.c16
-rw-r--r--bin/rcp/util.c4
2 files changed, 10 insertions, 10 deletions
diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c
index 53f601c..56478682 100644
--- a/bin/rcp/rcp.c
+++ b/bin/rcp/rcp.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: rcp.c,v 1.2 1994/09/24 02:56:56 davidg Exp $
+ * $Id: rcp.c,v 1.3 1995/03/19 13:29:14 joerg Exp $
*/
#ifndef lint
@@ -366,10 +366,10 @@ tolocal(argc, argv)
if ((bp = malloc(len)) == NULL)
err(1, NULL);
(void)snprintf(bp, len, "%s -f %s", cmd, src);
- rem =
+ rem =
#ifdef KERBEROS
- use_kerberos ?
- kerberos(&host, bp, pwd->pw_name, suser) :
+ use_kerberos ?
+ kerberos(&host, bp, pwd->pw_name, suser) :
#endif
rcmd(&host, port, pwd->pw_name, suser, bp, 0);
(void)free(bp);
@@ -714,7 +714,7 @@ bad: run_err("%s: %s", np, strerror(errno));
j = write(ofd, bp->buf, count);
if (j != count) {
wrerr = YES;
- wrerrno = j >= 0 ? EIO : errno;
+ wrerrno = j >= 0 ? EIO : errno;
}
}
count = 0;
@@ -724,7 +724,7 @@ bad: run_err("%s: %s", np, strerror(errno));
if (count != 0 && wrerr == NO &&
(j = write(ofd, bp->buf, count)) != count) {
wrerr = YES;
- wrerrno = j >= 0 ? EIO : errno;
+ wrerrno = j >= 0 ? EIO : errno;
}
if (ftruncate(ofd, size)) {
run_err("%s: truncate: %s", np, strerror(errno));
@@ -780,9 +780,9 @@ again:
errno = 0;
if (dest_realm == NULL)
dest_realm = krb_realmofhost(*host);
- rem =
+ rem =
#ifdef CRYPT
- doencrypt ?
+ doencrypt ?
krcmd_mutual(host,
port, user, bp, 0, dest_realm, &cred, schedule) :
#endif
diff --git a/bin/rcp/util.c b/bin/rcp/util.c
index 89e3560..099d2f9 100644
--- a/bin/rcp/util.c
+++ b/bin/rcp/util.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: util.c,v 1.2 1994/09/24 02:56:57 davidg Exp $
+ * $Id: util.c,v 1.3 1995/03/19 13:29:16 joerg Exp $
*/
#ifndef lint
@@ -118,7 +118,7 @@ susystem(s, userid)
switch (pid) {
case -1:
return (127);
-
+
case 0:
(void)setuid(userid);
execl(_PATH_BSHELL, "sh", "-c", s, NULL);
OpenPOWER on IntegriCloud