X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/06b2a088f26208fa8974f8326f01fdfa7908f08b..15ae42e72898f314109043075184a2c85295dc57:/client.c?ds=sidebyside diff --git a/client.c b/client.c index db58ed5f..8890f6c0 100644 --- a/client.c +++ b/client.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: client.c,v 1.7 2001/02/22 09:07:54 mdw Exp $ + * $Id: client.c,v 1.8 2001/06/19 22:09:37 mdw Exp $ * * Client for TrIPE * @@ -29,6 +29,10 @@ /*----- Revision history --------------------------------------------------* * * $Log: client.c,v $ + * Revision 1.8 2001/06/19 22:09:37 mdw + * Move the program name to the right place when constructing the arguments + * to pass to a new server. + * * Revision 1.7 2001/02/22 09:07:54 mdw * Write a pidfile on request, and delete it when finished. * @@ -413,10 +417,10 @@ int main(int argc, char *argv[]) #endif sigaction(SIGCHLD, &sa, 0); - DA_UNSHIFT(&spawnopts, (char *)spawnpath); DA_UNSHIFT(&spawnopts, (char *)sock); DA_UNSHIFT(&spawnopts, "-a"); DA_UNSHIFT(&spawnopts, "-d."); + DA_UNSHIFT(&spawnopts, (char *)spawnpath); DA_PUSH(&spawnopts, 0); if (socketpair(PF_UNIX, SOCK_STREAM, 0, pfd)) die(EXIT_FAILURE, "error from socketpair: %s", strerror(errno));