From: mdw Date: Tue, 19 Jun 2001 22:09:37 +0000 (+0000) Subject: Move the program name to the right place when constructing the arguments X-Git-Tag: 1.0.0pre3~31 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/commitdiff_plain/d071d798aa404f88ff0b8ccf73360b7e9232f29c?ds=sidebyside Move the program name to the right place when constructing the arguments to pass to a new server. --- 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));