summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniels@preemptive.research.nokia.com>2006-03-19 00:37:10 +0200
committerDaniel Stone <daniels@preemptive.research.nokia.com>2006-03-19 00:37:10 +0200
commit4e2df506bc3962c3c54f9588eba53427d6697e17 (patch)
tree2d1a9978080687c3f6bad11ceb9916839065f30a
parente5699e892be7d33edb70ac849a6b30265d2fc42d (diff)
Use svnserve, not svn.
-rw-r--r--ssh-bleach.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh-bleach.c b/ssh-bleach.c
index 562d5d4..5d101a9 100644
--- a/ssh-bleach.c
+++ b/ssh-bleach.c
@@ -49,9 +49,9 @@ int cvs_server (char *line) {
int svn_server (char *line) {
if (verbose)
- printf ("svn -t\n");
- (void) execl ("/usr/bin/svn", "-t", NULL);
- panic ("exec /usr/bin/svn failed: \"%s\"\n", strerror (errno));
+ printf ("svnserve -t\n");
+ (void) execl ("/usr/bin/svnserve", "-t", NULL);
+ panic ("exec /usr/bin/svnserve failed: \"%s\"\n", strerror (errno));
}
const char bad_chars[] = "\"$%'*;<>?[\\]`|";
@@ -195,7 +195,7 @@ struct {
int (*command) (char *line);
} commands[] = {
{ "cvs server", cvs_server },
- { "svn -t", svn_server },
+ { "svnserve -t", svn_server },
{ "git-receive-pack", git_receive_pack },
{ "git-upload-pack", git_upload_pack },
{ "rsync", rsync },