diff options
Diffstat (limited to 'src/extantz/extantz.c')
-rw-r--r-- | src/extantz/extantz.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c index 159fcaf..1708a6c 100644 --- a/src/extantz/extantz.c +++ b/src/extantz/extantz.c | |||
@@ -538,6 +538,7 @@ int skangStep = 0; | |||
538 | static Eina_Bool _makeSkang(void *data) | 538 | static Eina_Bool _makeSkang(void *data) |
539 | { | 539 | { |
540 | globals *ourGlobals = data; | 540 | globals *ourGlobals = data; |
541 | char buf[PATH_MAX]; | ||
541 | 542 | ||
542 | switch (skangStep++) | 543 | switch (skangStep++) |
543 | { | 544 | { |
@@ -567,7 +568,8 @@ static Eina_Bool _makeSkang(void *data) | |||
567 | #if USE_LOVE | 568 | #if USE_LOVE |
568 | case 5 : | 569 | case 5 : |
569 | // PD("About to try connecting to a love server."); | 570 | // PD("About to try connecting to a love server."); |
570 | reachOut("love", "./love", "127.0.0.1", 8211 + 1, ourGlobals, (Ecore_Event_Handler_Cb) _add, /*(Ecore_Event_Handler_Cb) _data*/ NULL, (Ecore_Event_Handler_Cb) _del, clientParser, NULL); | 571 | snprintf(buf, sizeof(buf), "%s/love", prefix_bin_get()); |
572 | reachOut("love", buf, "127.0.0.1", 8211 + 1, ourGlobals, (Ecore_Event_Handler_Cb) _add, /*(Ecore_Event_Handler_Cb) _data*/ NULL, (Ecore_Event_Handler_Cb) _del, clientParser, NULL); | ||
571 | break; | 573 | break; |
572 | #endif | 574 | #endif |
573 | 575 | ||