Revision: 6802
Author: ek.kato
Date: Sun Nov 7 18:07:09 2010
Log: * fep/udsock.c (usersockname)
* fep/uim-fep.c (main)
- Don't exit the program when the config directory cannot be
created.
http://code.google.com/p/uim/source/detail?r=6802
Modified:
/trunk/fep/udsock.c
/trunk/fep/uim-fep.c
=======================================
--- /trunk/fep/udsock.c Sun Apr 4 20:35:54 2010
+++ /trunk/fep/udsock.c Sun Nov 7 18:07:09 2010
@@ -112,7 +112,7 @@
if (!get_ud_path(sock_dir, sizeof(sock_dir))) {
sendline("uim-fep cannot create directory");
- exit(EXIT_FAILURE);
+ /* exit(EXIT_FAILURE); */
}
snprintf(buf, sizeof(buf), "%s/%s", sock_dir, filebuf);
=======================================
--- /trunk/fep/uim-fep.c Sun Apr 4 20:35:54 2010
+++ /trunk/fep/uim-fep.c Sun Nov 7 18:07:09 2010
@@ -417,7 +417,7 @@
if (!get_ud_path(uim_dir, sizeof(uim_dir))) {
sendline("uim-fep cannot make directory");
- return EXIT_FAILURE;
+ /* return EXIT_FAILURE; */
}
sty_str = getenv("STY");