Major change was to convert from multiple drivers to a single driver.

Other minor things: comments, more robust MtxOrb driver, and more use
of syslog.
This commit is contained in:
ddouthitt
2001-09-24 22:33:59 +00:00
parent f23292a554
commit 875ee72589
6 changed files with 361 additions and 622 deletions
+4 -1
View File
@@ -1,5 +1,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <syslog.h>
#include "shared/LL.h"
#include "shared/sockets.h"
@@ -29,7 +30,7 @@ screenlist_init ()
screenlist = LL_new ();
if (!screenlist) {
fprintf (stderr, "screenlist_init: Error allocating list\n");
syslog(LOG_ERR, "screenlist_init: error allocating list");
return -1;
}
@@ -116,6 +117,7 @@ screenlist_current ()
sock_send_string (c->sock, str);
} else // The server has the display, so do nothing
{
;
}
//debug("screenlist_current: ... sent ignore\n");
}
@@ -129,6 +131,7 @@ screenlist_current ()
sock_send_string (c->sock, str);
} else // The server has the display, so do nothing
{
;
}
}
}