From c4aa9572a98ff7a31733af5228256daae503cbba Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Tue, 14 Aug 2007 02:18:22 +0200 Subject: [PATCH] Use -l option to dolcon in gui-shell. --- clients/gui-shell/dsh.c | 2 +- clients/gui-shell/launch.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/gui-shell/dsh.c b/clients/gui-shell/dsh.c index 85f06bf..0e459a6 100644 --- a/clients/gui-shell/dsh.c +++ b/clients/gui-shell/dsh.c @@ -337,7 +337,7 @@ void dolcon(void) if((dcpid = fork()) == 0) { for(i = 3; i < FD_SETSIZE; i++) close(i); - execlp("dolcon", "dolcon", NULL); + execlp("dolcon", "dolcon", "-l", NULL); perror("dolcon"); exit(127); } diff --git a/clients/gui-shell/launch.c b/clients/gui-shell/launch.c index c23b130..604af4a 100644 --- a/clients/gui-shell/launch.c +++ b/clients/gui-shell/launch.c @@ -65,7 +65,7 @@ int main(int argc, char **argv) execlp("doldacond-shell", "doldacond-shell", NULL); perror("doldacond-shell"); } else { - execlp("dolcon", "dolcon", NULL); + execlp("dolcon", "dolcon", "-l", NULL); perror("dolcon"); } return(127); -- 2.11.0