Author: iratqq
Date: Sun Mar 2 06:27:02 2008
New Revision: 5268
Modified:
trunk/uim/prime.c
trunk/uim/uim-helper.c
Log:
* uim/uim-helper.c (uim_helper_get_pathname):
- Fix correct pathname of socket.
* uim/prime.c (prime_get_ud_path):
- Ditto.
Modified: trunk/uim/prime.c
==============================================================================
--- trunk/uim/prime.c (original)
+++ trunk/uim/prime.c Sun Mar 2 06:27:02 2008
@@ -130,7 +130,7 @@
return UIM_FALSE;
}
- snprintf(prime_path, len, "%s/uim-prime", ud_path);
+ snprintf(prime_path, len, "%s/uim-prime", socket_path);
return UIM_TRUE;
}
Modified: trunk/uim/uim-helper.c
==============================================================================
--- trunk/uim/uim-helper.c (original)
+++ trunk/uim/uim-helper.c Sun Mar 2 06:27:02 2008
@@ -205,7 +205,7 @@
return UIM_FALSE;
}
- snprintf(helper_path, len, "%s/uim-helper", ud_path);
+ snprintf(helper_path, len, "%s/uim-helper", socket_path);
UIM_CATCH_ERROR_END();