Using dashes instead of underscores for client lib prefix

This commit is contained in:
Michael Jumper 2011-02-28 14:51:18 -08:00
parent 122cbeff15
commit a1f65ce659

View File

@ -92,7 +92,7 @@ guac_client* guac_get_client(int client_fd) {
GUACIO* io = guac_open(client_fd);
/* Pluggable client */
char protocol_lib[256] = "libguac_client_";
char protocol_lib[256] = "libguac-client-";
union {
guac_client_init_handler* client_init;