Thread: [ClusterIt-CVS] CVS commit: src
Brought to you by:
garbled
|
From: Tim R. <ga...@us...> - 2005-12-10 06:35:47
|
Module Name: src Committed By: garbled Date: Sat Dec 10 06:35:41 UTC 2005 Modified Files: src: clusterit.spec Log Message: Update URL in spec file To generate a diff of this commit: cvs rdiff -r1.4 -r1.5 src/clusterit.spec Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-10 06:45:13
|
Module Name: src Committed By: garbled Date: Sat Dec 10 06:45:05 UTC 2005 Modified Files: src/barrier: barrier.c barrierd.c src/common: common.c src/dsh: dsh.c rseq.c run.c src/dvt: dvt.c src/jsd: jsd.c jsh.c src/pcp: pcp.c Log Message: Fix the following bugs: 1377537 1377448 1374720 1) argv[0] was being corrupted by strsep(3), causing ps to show garbage instead of the process name. Fixed this by strdup()ing argv[0] before hacking at it with strsep(3) 2) Linux apparently sends POLLHUP when the remote end has closed, instead of POLLHUP|POLLIN like NetBSD does. This means that unless we look for POLLHUP in the scan, we never get the data, causing dsh to truncate output from the child rsh/ssh. 3) Add a quick routine to strip the trailing whitespace from the groupname when parsing the clusterfile. I think I still need to do this for the lumpname too. To generate a diff of this commit: cvs rdiff -r1.16 -r1.17 src/barrier/barrier.c src/barrier/barrierd.c cvs rdiff -r1.15 -r1.16 src/common/common.c cvs rdiff -r1.21 -r1.22 src/dsh/dsh.c cvs rdiff -r1.15 -r1.16 src/dsh/rseq.c cvs rdiff -r1.13 -r1.14 src/dsh/run.c cvs rdiff -r1.6 -r1.7 src/dvt/dvt.c cvs rdiff -r1.13 -r1.14 src/jsd/jsd.c cvs rdiff -r1.11 -r1.12 src/jsd/jsh.c cvs rdiff -r1.14 -r1.15 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-10 07:21:04
|
Module Name: src Committed By: garbled Date: Sat Dec 10 07:20:58 UTC 2005 Modified Files: src: CHANGES Log Message: Add today's changes To generate a diff of this commit: cvs rdiff -r1.10 -r1.11 src/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-11 06:20:04
|
Module Name: src Committed By: garbled Date: Sun Dec 11 06:19:58 UTC 2005 Modified Files: src/barrier: barrier.c src/common: common.c common.h src/dsh: dsh.c rseq.c run.c src/dvt: dvt.c src/jsd: jsd.c jsh.c src/pcp: pcp.c Log Message: Replace most instances of sprintf with snprintf. Replace most instances of malloc with calloc. Clean up a few nested if statements, and useless braces that were there for debugging. Add RCMD_CMD_ARGS to most of the programs. This makes it easier to do things like run "ssh -4" as your RCMD_CMD. Stop allocating the command to be run on the remote end as buf[MAXBUF], instead compute it at runtime and dynamically allocate it to prevent possible overflow on a huge command. To generate a diff of this commit: cvs rdiff -r1.17 -r1.18 src/barrier/barrier.c cvs rdiff -r1.17 -r1.18 src/common/common.c cvs rdiff -r1.10 -r1.11 src/common/common.h cvs rdiff -r1.22 -r1.23 src/dsh/dsh.c cvs rdiff -r1.16 -r1.17 src/dsh/rseq.c cvs rdiff -r1.14 -r1.15 src/dsh/run.c cvs rdiff -r1.7 -r1.8 src/dvt/dvt.c cvs rdiff -r1.14 -r1.15 src/jsd/jsd.c cvs rdiff -r1.12 -r1.13 src/jsd/jsh.c cvs rdiff -r1.15 -r1.16 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-11 06:22:30
|
Module Name: src Committed By: garbled Date: Sun Dec 11 06:22:22 UTC 2005 Modified Files: src: CHANGES Log Message: note recent changes To generate a diff of this commit: cvs rdiff -r1.11 -r1.12 src/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-12 08:00:22
|
Module Name: src Committed By: garbled Date: Mon Dec 12 08:00:12 UTC 2005 Modified Files: src/dsh: dsh.1 rseq.1 run.1 src/dvt: dvt.1 dvt.c src/jsd: jsd.1 jsh.1 src/rvt: rvt.c xsetup.c xvt.1 src/tools: pdf.sh Log Message: Document RCMD_CMD_ARGS Add RVT_CMD_ARGS to dvt, to allow passing of args to rvt Incorporate patches from debian xvt package into rvt: Fix xvt manpage typos Add -rv (reverse-video) option Better colormap handling Fix pdf to work on linux hosts To generate a diff of this commit: cvs rdiff -r1.16 -r1.17 src/dsh/dsh.1 cvs rdiff -r1.14 -r1.15 src/dsh/rseq.1 cvs rdiff -r1.10 -r1.11 src/dsh/run.1 cvs rdiff -r1.1 -r1.2 src/dvt/dvt.1 cvs rdiff -r1.8 -r1.9 src/dvt/dvt.c cvs rdiff -r1.4 -r1.5 src/jsd/jsd.1 src/jsd/jsh.1 cvs rdiff -r1.3 -r1.4 src/rvt/rvt.c src/rvt/xsetup.c cvs rdiff -r1.1 -r1.2 src/rvt/xvt.1 cvs rdiff -r1.6 -r1.7 src/tools/pdf.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-12 08:02:57
|
Module Name: src Committed By: garbled Date: Mon Dec 12 08:02:50 UTC 2005 Modified Files: src: CHANGES TODO Log Message: Note changes To generate a diff of this commit: cvs rdiff -r1.12 -r1.13 src/CHANGES cvs rdiff -r1.7 -r1.8 src/TODO Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-13 04:30:36
|
Module Name: src Committed By: garbled Date: Tue Dec 13 04:30:30 UTC 2005 Modified Files: src/html: clusterit.html src/html/man: dsh.html dvt.html jsd.html jsh.html rseq.html run.html src/tools: Makefile.am Makefile.in Log Message: Regen the html manpages. Fix removal of dshbak.sh during make clean of tools. To generate a diff of this commit: cvs rdiff -r1.15 -r1.16 src/html/clusterit.html cvs rdiff -r1.3 -r1.4 src/html/man/dsh.html src/html/man/run.html cvs rdiff -r1.2 -r1.3 src/html/man/dvt.html cvs rdiff -r1.4 -r1.5 src/html/man/jsd.html src/html/man/jsh.html cvs rdiff -r1.5 -r1.6 src/html/man/rseq.html cvs rdiff -r1.2 -r1.3 src/tools/Makefile.am cvs rdiff -r1.4 -r1.5 src/tools/Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-13 05:02:06
|
Module Name: src Committed By: garbled Date: Tue Dec 13 05:01:56 UTC 2005 Modified Files: src/barrier: barrier.1 barrier.c barrierd.1 barrierd.c src/common: common.c src/dsh: dsh.1 dsh.c rseq.1 rseq.c run.1 run.c src/dvt: dvt.1 dvt.c src/jsd: jsd.1 jsd.c jsh.1 jsh.c src/pcp: pcp.1 pcp.c src/rvt: Makefile.am Makefile.in rvt.1 rvt.c xvt.1 Log Message: Add -v option to everything displaying the current version of clusterit. Set the version as a string in common.c To generate a diff of this commit: cvs rdiff -r1.7 -r1.8 src/barrier/barrier.1 cvs rdiff -r1.18 -r1.19 src/barrier/barrier.c cvs rdiff -r1.5 -r1.6 src/barrier/barrierd.1 cvs rdiff -r1.17 -r1.18 src/barrier/barrierd.c cvs rdiff -r1.18 -r1.19 src/common/common.c cvs rdiff -r1.17 -r1.18 src/dsh/dsh.1 src/dsh/rseq.c cvs rdiff -r1.23 -r1.24 src/dsh/dsh.c cvs rdiff -r1.15 -r1.16 src/dsh/rseq.1 src/dsh/run.c cvs rdiff -r1.11 -r1.12 src/dsh/run.1 cvs rdiff -r1.2 -r1.3 src/dvt/dvt.1 cvs rdiff -r1.9 -r1.10 src/dvt/dvt.c cvs rdiff -r1.5 -r1.6 src/jsd/jsd.1 src/jsd/jsh.1 cvs rdiff -r1.15 -r1.16 src/jsd/jsd.c cvs rdiff -r1.13 -r1.14 src/jsd/jsh.c cvs rdiff -r1.13 -r1.14 src/pcp/pcp.1 cvs rdiff -r1.16 -r1.17 src/pcp/pcp.c cvs rdiff -r1.1 -r1.2 src/rvt/Makefile.am cvs rdiff -r1.3 -r1.4 src/rvt/Makefile.in cvs rdiff -r1.2 -r1.3 src/rvt/rvt.1 src/rvt/xvt.1 cvs rdiff -r1.4 -r1.5 src/rvt/rvt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-13 05:09:12
|
Module Name: src Committed By: garbled Date: Tue Dec 13 05:09:06 UTC 2005 Modified Files: src/common: common.c sockcommon.c src/dvt: dvt.c src/jsd: jsd.c src/pcp: pcp.c Log Message: Change the rest of the malloc()'s into calloc()'s To generate a diff of this commit: cvs rdiff -r1.19 -r1.20 src/common/common.c cvs rdiff -r1.4 -r1.5 src/common/sockcommon.c cvs rdiff -r1.10 -r1.11 src/dvt/dvt.c cvs rdiff -r1.16 -r1.17 src/jsd/jsd.c cvs rdiff -r1.17 -r1.18 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-13 05:10:42
|
Module Name: src Committed By: garbled Date: Tue Dec 13 05:10:36 UTC 2005 Modified Files: src: CHANGES Log Message: Note changes To generate a diff of this commit: cvs rdiff -r1.13 -r1.14 src/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2005-12-13 08:04:33
|
Module Name: src Committed By: garbled Date: Tue Dec 13 08:04:26 UTC 2005 Modified Files: src: CHANGES Log Message: Forgot a name in CHANGES To generate a diff of this commit: cvs rdiff -r1.14 -r1.15 src/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2006-01-24 19:00:41
|
Module Name: src Committed By: garbled Date: Tue Jan 24 19:00:25 UTC 2006 Modified Files: src/common: sockcommon.c src/dsh: dsh.c rseq.c run.c src/jsd: jsd.c jsh.c Log Message: Lots of bugfixes here pointed out to me by Ernst Rohlicek via private email: 1) Fix the bug where jsd didn't work on linux. It was a stupid in not setting the size argument properly in accept. 2) Fix the stdin command mode on all the utilities.. this must have gotten broken at some point.. I honestly don't use it much. 3) Make jsh catch sigterm and sigint, and free the node to keep jsd from losing all it's nodes. 4) Fix jsd -o, it was missing from the getopt call. 5) Slightly better setup of the socket, use REUSEADDR and a short linger. 6) Fix string allocation in jsd -d for the node list. Whew. Thats alot of bugs. To generate a diff of this commit: cvs rdiff -r1.5 -r1.6 src/common/sockcommon.c cvs rdiff -r1.24 -r1.25 src/dsh/dsh.c cvs rdiff -r1.18 -r1.19 src/dsh/rseq.c cvs rdiff -r1.16 -r1.17 src/dsh/run.c cvs rdiff -r1.17 -r1.18 src/jsd/jsd.c cvs rdiff -r1.14 -r1.15 src/jsd/jsh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2006-02-01 17:40:25
|
Module Name: src Committed By: garbled Date: Wed Feb 1 17:40:15 UTC 2006 Modified Files: src: CHANGES README src/common: common.c Log Message: Update for 2.4 release To generate a diff of this commit: cvs rdiff -r1.15 -r1.16 src/CHANGES cvs rdiff -r1.9 -r1.10 src/README cvs rdiff -r1.20 -r1.21 src/common/common.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2006-02-01 17:53:00
|
Module Name: src
Committed By: garbled
Date: Wed Feb 1 17:52:53 UTC 2006
Modified Files:
src: CHANGES Makefile.in clusterit.spec configure configure.ac
src/barrier: Makefile.in
src/catman: barrier.0 barrierd.0 pdf.0
src/dsh: Makefile.in
src/dvt: Makefile.in
src/html/man: barrier.html barrierd.html pdf.html
src/jsd: Makefile.in
src/pcp: Makefile.in
src/rvt: Makefile.in
src/tools: Makefile.in
Log Message:
More 2.4 version changes. Regen manpages
To generate a diff of this commit:
cvs rdiff -r1.16 -r1.17 src/CHANGES
cvs rdiff -r1.3 -r1.4 src/Makefile.in src/configure
cvs rdiff -r1.5 -r1.6 src/clusterit.spec
cvs rdiff -r1.2 -r1.3 src/configure.ac
cvs rdiff -r1.3 -r1.4 src/barrier/Makefile.in
cvs rdiff -r1.4 -r1.5 src/catman/barrier.0
cvs rdiff -r1.5 -r1.6 src/catman/barrierd.0 src/catman/pdf.0
cvs rdiff -r1.4 -r1.5 src/dsh/Makefile.in
cvs rdiff -r1.3 -r1.4 src/dvt/Makefile.in
cvs rdiff -r1.4 -r1.5 src/html/man/barrier.html src/html/man/barrierd.html \
src/html/man/pdf.html
cvs rdiff -r1.3 -r1.4 src/jsd/Makefile.in
cvs rdiff -r1.3 -r1.4 src/pcp/Makefile.in
cvs rdiff -r1.4 -r1.5 src/rvt/Makefile.in
cvs rdiff -r1.5 -r1.6 src/tools/Makefile.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
|
|
From: Tim R. <ga...@us...> - 2007-01-04 18:57:38
|
Module Name: src Committed By: garbled Date: Thu Jan 4 18:57:37 UTC 2007 Modified Files: src: Makefile.in config.h.in configure src/barrier: Makefile.in src/common: common.c src/dsh: Makefile.in dsh.1 dsh.c src/dvt: Makefile.in src/jsd: Makefile.in src/pcp: Makefile.in pcp.1 pcp.c src/rvt: Makefile.in src/tools: Makefile.in Log Message: Bump version to 2.4.1_BETA Add -s argument to dsh to allow dsh to copy and execute a script in one step to remote machines. Add RCP_CMD_ARGS to pcp. Documentation updates for above. To generate a diff of this commit: cvs rdiff -r1.4 -r1.5 src/Makefile.in src/configure cvs rdiff -r1.2 -r1.3 src/config.h.in cvs rdiff -r1.4 -r1.5 src/barrier/Makefile.in cvs rdiff -r1.21 -r1.22 src/common/common.c cvs rdiff -r1.5 -r1.6 src/dsh/Makefile.in cvs rdiff -r1.18 -r1.19 src/dsh/dsh.1 cvs rdiff -r1.26 -r1.27 src/dsh/dsh.c cvs rdiff -r1.4 -r1.5 src/dvt/Makefile.in cvs rdiff -r1.4 -r1.5 src/jsd/Makefile.in cvs rdiff -r1.4 -r1.5 src/pcp/Makefile.in cvs rdiff -r1.14 -r1.15 src/pcp/pcp.1 cvs rdiff -r1.18 -r1.19 src/pcp/pcp.c cvs rdiff -r1.5 -r1.6 src/rvt/Makefile.in cvs rdiff -r1.6 -r1.7 src/tools/Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-04 18:59:11
|
Module Name: src Committed By: garbled Date: Thu Jan 4 18:59:06 UTC 2007 Modified Files: src: CHANGES Log Message: note changes To generate a diff of this commit: cvs rdiff -r1.17 -r1.18 src/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-09 20:14:42
|
Module Name: src Committed By: garbled Date: Tue Jan 9 20:14:37 UTC 2007 Modified Files: src: config.h.in configure configure.ac src/barrier: Makefile.in src/common: common.c common.h src/dsh: dsh.c Log Message: Initial work to switch the default rcmds from rsh to ssh. Added new functions to handle rsh/rshargs environment parsing, so RCMD_CMD_ARGS could be set to something like "ssh -v". Changed configure script so that rsh could be made the default with --enable-default-rsh Fixed handling of the rshport test to be a little more robust. To generate a diff of this commit: cvs rdiff -r1.3 -r1.4 src/config.h.in src/configure.ac cvs rdiff -r1.5 -r1.6 src/configure cvs rdiff -r1.5 -r1.6 src/barrier/Makefile.in cvs rdiff -r1.22 -r1.23 src/common/common.c cvs rdiff -r1.11 -r1.12 src/common/common.h cvs rdiff -r1.27 -r1.28 src/dsh/dsh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-09 21:28:40
|
Module Name: src Committed By: garbled Date: Tue Jan 9 21:28:33 UTC 2007 Modified Files: src/common: common.c common.h src/dsh: dsh.1 dsh.c rseq.1 rseq.c Log Message: Commonize some more code, and convert rseq to the new RCMD_CMD handling. Add the -top options to rseq. To generate a diff of this commit: cvs rdiff -r1.23 -r1.24 src/common/common.c cvs rdiff -r1.12 -r1.13 src/common/common.h cvs rdiff -r1.19 -r1.20 src/dsh/dsh.1 src/dsh/rseq.c cvs rdiff -r1.28 -r1.29 src/dsh/dsh.c cvs rdiff -r1.16 -r1.17 src/dsh/rseq.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-10 20:36:16
|
Module Name: src Committed By: garbled Date: Wed Jan 10 20:36:11 UTC 2007 Modified Files: src/common: common.c common.h src/dsh: dsh.1 dsh.c rseq.1 rseq.c run.1 run.c src/pcp: pcp.1 Log Message: Convert run to new rcmd handling, and add -t handling. Commonize the -x and -g commandline processing code to reduce divergence. Make run dsh and rseq pass -Wall. Manpage updates for run. To generate a diff of this commit: cvs rdiff -r1.24 -r1.25 src/common/common.c cvs rdiff -r1.13 -r1.14 src/common/common.h cvs rdiff -r1.20 -r1.21 src/dsh/dsh.1 cvs rdiff -r1.30 -r1.31 src/dsh/dsh.c cvs rdiff -r1.17 -r1.18 src/dsh/rseq.1 src/dsh/run.c cvs rdiff -r1.22 -r1.23 src/dsh/rseq.c cvs rdiff -r1.12 -r1.13 src/dsh/run.1 cvs rdiff -r1.15 -r1.16 src/pcp/pcp.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-11 20:19:27
|
Module Name: src Committed By: garbled Date: Thu Jan 11 20:19:22 UTC 2007 Modified Files: src/common: common.c src/dsh: dsh.c src/pcp: pcp.1 pcp.c Log Message: Update pcp for new g/x argument handling. Update pcp to new RCP_CMD and RCP_CMD_ARGS handling. Add test option to pcp. Clean up pcp code and get rid of some statically allocated buffer sizes. Manpage updates for above. To generate a diff of this commit: cvs rdiff -r1.25 -r1.26 src/common/common.c cvs rdiff -r1.31 -r1.32 src/dsh/dsh.c cvs rdiff -r1.16 -r1.17 src/pcp/pcp.1 cvs rdiff -r1.19 -r1.20 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-18 18:02:41
|
Module Name: src Committed By: garbled Date: Thu Jan 18 18:02:31 UTC 2007 Modified Files: src/common: common.c src/dsh: dsh.c Log Message: Add \n to the end of the port test error message. Apply part of a patch for linux from a user: - The "dsh interactive mode" functionality is broken. There are two problems here. First, the "poll()-then-fgets()" loop in dsh.c assumes line buffered stdout from children. Under Linux, stdout from children is not line buffered so the fgets() does not consume all the stdout. I've fixed this by putting stdin and stderr in non-blocking mode and doing "poll()-then-loop-on-fgets()". Second, Linux's poll() does not return a POLLHUP event when the child's stdin is closed. My fix is to simply #ifndef linux around the close(STDIN_FILENO) in the child. To generate a diff of this commit: cvs rdiff -r1.26 -r1.27 src/common/common.c cvs rdiff -r1.32 -r1.33 src/dsh/dsh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-22 18:48:18
|
Module Name: src Committed By: garbled Date: Mon Jan 22 18:48:16 UTC 2007 Modified Files: src/common: common.c common.h src/dsh: dsh.c rseq.c run.c src/pcp: pcp.c Log Message: Rework the signal handling per the patch from scientific linux. Rather than set up a SIGALRM handler in the parent and rely on it getting passed down to the child (in the case of dsh), we set the handler in test_node(). This cleans up the code in a few of the programs that only had handler code in order to listen to this one signal. Also fix the fgets on linux problem in rseq, run and pcp. Other programs still have to be updated for these (and other) changes. Still working through them all. To generate a diff of this commit: cvs rdiff -r1.28 -r1.29 src/common/common.c cvs rdiff -r1.14 -r1.15 src/common/common.h cvs rdiff -r1.33 -r1.34 src/dsh/dsh.c cvs rdiff -r1.23 -r1.24 src/dsh/rseq.c cvs rdiff -r1.18 -r1.19 src/dsh/run.c cvs rdiff -r1.20 -r1.21 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-23 17:56:34
|
Module Name: src Committed By: garbled Date: Tue Jan 23 17:56:31 UTC 2007 Modified Files: src/dsh: dsh.c rseq.c run.c src/dvt: dvt.c src/jsd: jsd.c jsh.c src/pcp: pcp.c Log Message: Convert jsd/jsh over to new -g/-x and RCMD_CMD handling. Apply scientific linux patches to them. Minor formatting nit in the rest. To generate a diff of this commit: cvs rdiff -r1.34 -r1.35 src/dsh/dsh.c cvs rdiff -r1.24 -r1.25 src/dsh/rseq.c cvs rdiff -r1.19 -r1.20 src/dsh/run.c cvs rdiff -r1.12 -r1.13 src/dvt/dvt.c cvs rdiff -r1.18 -r1.19 src/jsd/jsd.c cvs rdiff -r1.15 -r1.16 src/jsd/jsh.c cvs rdiff -r1.21 -r1.22 src/pcp/pcp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
|
From: Tim R. <ga...@us...> - 2007-01-24 19:02:14
|
Module Name: src Committed By: garbled Date: Wed Jan 24 19:02:10 UTC 2007 Modified Files: src/common: common.c common.h src/rvt: Makefile.am Makefile.in rvt.c rvt.h ttyinit.c xsetup.c Log Message: Update rvt to new remote command handling. Make it also use the user@node format for connecting to remote hosts. To generate a diff of this commit: cvs rdiff -r1.29 -r1.30 src/common/common.c cvs rdiff -r1.15 -r1.16 src/common/common.h cvs rdiff -r1.2 -r1.3 src/rvt/Makefile.am src/rvt/rvt.h cvs rdiff -r1.6 -r1.7 src/rvt/Makefile.in cvs rdiff -r1.5 -r1.6 src/rvt/rvt.c cvs rdiff -r1.1 -r1.2 src/rvt/ttyinit.c cvs rdiff -r1.4 -r1.5 src/rvt/xsetup.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |