=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/rdist.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/rdist/rdist.c 2001/11/19 19:02:15 1.9 --- src/usr.bin/rdist/rdist.c 2001/12/29 21:31:55 1.10 *************** *** 1,4 **** ! /* $OpenBSD: rdist.c,v 1.9 2001/11/19 19:02:15 mpech Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: rdist.c,v 1.10 2001/12/29 21:31:55 millert Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 39,45 **** "$From: rdist.c,v 6.65 1995/12/12 00:20:39 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: rdist.c,v 1.9 2001/11/19 19:02:15 mpech Exp $"; #endif static char sccsid[] = "@(#)main.c 5.1 (Berkeley) 6/6/85"; --- 39,45 ---- "$From: rdist.c,v 6.65 1995/12/12 00:20:39 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: rdist.c,v 1.10 2001/12/29 21:31:55 millert Exp $"; #endif static char sccsid[] = "@(#)main.c 5.1 (Berkeley) 6/6/85"; *************** *** 296,302 **** "The -n flag and \"verify\" mode may not both be used."); if (path_remsh == NULL) ! path_remsh = getenv("RSH"); /* * Don't fork children for nflag --- 296,303 ---- "The -n flag and \"verify\" mode may not both be used."); if (path_remsh == NULL) ! if ((cp = getenv("RSH")) != NULL && *cp != '\0') ! path_remsh = cp; /* * Don't fork children for nflag