I got some help from a co-worker to test this fix. He ran 1000's of clones
with bash as a login shell and with tcsh as a login shell with zero
problems. Can a couple other folks test it and can it then get into the
official release (assuming no problems found)?

It would be a real boon for me and some of my co-workers to have this
working :)

Cheers,

Matt

The patch with junk eliminated, it is just one line change:
>
>
> Index: src/http_transport.c
> ==================================================================
> --- src/http_transport.c
> +++ src/http_transport.c
> @@ -222,10 +222,11 @@
>
>        zHost = mprintf("%s", g.urlName);
>      }
>      blob_append(&zCmd, " ", 1);
>      shell_escape(&zCmd, zHost);
>      fossil_print(" %s\n", zHost);  /* Show the conclusion of the SSH
> command */
> +    blob_append(&zCmd, " exec /bin/sh", -1);
>      free(zHost);
>      popen2(blob_str(&zCmd), &sshIn, &sshOut, &sshPid);
>      if( sshPid==0 ){
>        fossil_fatal("cannot start ssh tunnel using [%b]", &zCmd);
>      }
>
>
>
>
>>
>>> --
>>> D. Richard Hipp
>>> d...@sqlite.org
>>>
>>> _______________________________________________
>>> fossil-users mailing list
>>> fossil-users@lists.fossil-scm.org
>>> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>>>
>>>
>>
>
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to