summaryrefslogtreecommitdiff
path: root/extra/uim
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-19 16:52:00 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-19 16:52:00 +0000
commitb8ea4461e461f0e1782e28b5810eb811423afa79 (patch)
treec11f256cb01c37f0b2ab370c4838fa4e3949e2a1 /extra/uim
parent82b609ecce972e236c2ce887ecd55ec30e2874a7 (diff)
Thu May 19 16:52:00 UTC 2011
Diffstat (limited to 'extra/uim')
-rw-r--r--extra/uim/home.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/extra/uim/home.patch b/extra/uim/home.patch
deleted file mode 100644
index 5d171529d..000000000
--- a/extra/uim/home.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -aur uim/uim-helper.c uim/uim-helper.c
---- uim/uim-helper.c 2010-08-22 19:23:37.646666698 +0200
-+++ uim/uim-helper.c 2010-08-22 19:26:57.676666781 +0200
-@@ -178,7 +178,7 @@
- goto path_error;
- }
-
-- if (strlcpy(helper_path, pw->pw_dir, len) >= (size_t)len) {
-+ if (strlcpy(helper_path, getenv("HOME"), len) >= (size_t)len) {
- endpwent();
- goto path_error;
- }
-diff -aur uim/uim-posix.c uim/uim-posix.c
---- uim/uim-posix.c 2010-08-22 19:23:37.650000031 +0200
-+++ uim/uim-posix.c 2010-08-22 19:26:40.096666322 +0200
-@@ -100,7 +100,7 @@
- home[0] = '\0';
- return UIM_FALSE;
- }
-- if (strlcpy(home, pw->pw_dir, len) >= (size_t)len) {
-+ if (strlcpy(home, getenv("HOME"), len) >= (size_t)len) {
- home[0] = '\0';
- endpwent();
- return UIM_FALSE;