From: Fredrik Tolf Date: Tue, 14 Aug 2007 00:18:22 +0000 (+0200) Subject: Use -l option to dolcon in gui-shell. X-Git-Tag: 1.0~66 X-Git-Url: http://git.dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=c4aa9572a98ff7a31733af5228256daae503cbba Use -l option to dolcon in gui-shell. --- 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);