Branch: master

46d9df23 2015-09-18 04:08:20 Timothy Pearson
Increase the maximum reserved VT number to 32
The display switch features depend on each session having a VT number, thus it is important to have a suffucient number of VTs available for use
Most Linux distributions allow 64 VTs by default, and the kernel allows up to 256 VTs
M tdm/backend/dm.c
diff --git a/tdm/backend/dm.c b/tdm/backend/dm.c
index b6789a6..be78539 100644
--- a/tdm/backend/dm.c
+++ b/tdm/backend/dm.c
@@ -51,7 +51,7 @@
 # include <sys/vt.h>
 #endif
 
-#define MAX_VT_NUMBER 16
+#define MAX_VT_NUMBER 32
 
 static void SigHandler( int n );
 static int ScanConfigs( int force );