2008-01-25 Bruno Haible * src/root.c (parse_cvsroot): If the method is extssh, set the cvs_rsh override to "ssh". Index: src/root.c =================================================================== RCS file: /sources/cvs/ccvs/src/root.c,v retrieving revision 1.131 diff -c -3 -r1.131 root.c *** src/root.c 25 Jan 2008 07:17:35 -0000 1.131 --- src/root.c 25 Jan 2008 14:45:52 -0000 *************** *** 677,683 **** --- 677,686 ---- else if (!strcasecmp (method, "ext")) newroot->method = ext_method; else if (!strcasecmp (method, "extssh")) + { newroot->method = extssh_method; + newroot->cvs_rsh = xstrdup ("ssh"); + } else if (!strcasecmp (method, "fork")) newroot->method = fork_method; else