summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilsimo <ilsimo>2005-10-09 19:57:16 +0000
committerilsimo <ilsimo>2005-10-09 19:57:16 +0000
commitb2e120e688a3c9e091a01b720f7766d2a40ac39d (patch)
tree4bd3e1c7394df6e9c1d4829ff445fd63fcff29d1
parent2fa674469f185d4bbdd8ab8d5b5dd5103b7d6f6b (diff)
downloadxrdp-proprietary-b2e120e688a3c9e091a01b720f7766d2a40ac39d.tar.gz
xrdp-proprietary-b2e120e688a3c9e091a01b720f7766d2a40ac39d.zip
fixing some typos in Makefiles
-rw-r--r--Makefile1
-rw-r--r--sesman/Makefile2
-rw-r--r--sesman/sesman.c3
3 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d646d7ce..180be7fa 100644
--- a/Makefile
+++ b/Makefile
@@ -26,6 +26,7 @@ install:
install xrdp/Tahoma-10.fv1 $(DESTDIR)/Tahoma-10.fv1
install vnc/libvnc.so $(DESTDIR)/libvnc.so
install sesman/sesman $(DESTDIR)/sesman
+ install sesman/sesrun $(DESTDIR)/sesrun
install instfiles/sesman.ini $(DESTDIR)/sesman.ini
install instfiles/startwm.sh $(DESTDIR)/startwm.sh
install instfiles/xrdp.ini $(DESTDIR)/xrdp.ini
diff --git a/sesman/Makefile b/sesman/Makefile
index 4be042e2..ffd9623d 100644
--- a/sesman/Makefile
+++ b/sesman/Makefile
@@ -15,7 +15,7 @@ CFLAGS = -Wall -O2 -I../common
LDFLAGS = -L /usr/gnu/lib
CC = gcc
-all: nopam tools
+all: pam tools
nopam: $(SESMANOBJ) verify_user.o
$(CC) $(LDFLAGS) -o sesman $(SESMANOBJ) verify_user.o -ldl -lcrypt
diff --git a/sesman/sesman.c b/sesman/sesman.c
index 54e78147..c13cea16 100644
--- a/sesman/sesman.c
+++ b/sesman/sesman.c
@@ -78,11 +78,8 @@ main(int argc, char** argv)
/* start of daemonizing code */
g_pid = g_fork();
- g_printf("forkando: %d\n",g_pid);
-
if (0!=g_pid)
{
- g_printf("il processo %d esce...\n",g_pid);
g_exit(0);
}