summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-05-23 20:52:35 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-05-23 20:52:35 +0000
commit0f9285a745233f8a6b6cfc902344eca55d7b3e1e (patch)
treeadc2f422197d84eb06f6907177fa796aaa4bf727
parent615e8af8411e64db4db57d453af00ea9a7ca1fa2 (diff)
downloadmtk-20170518-0f9285a745233f8a6b6cfc902344eca55d7b3e1e.zip
mtk-20170518-0f9285a745233f8a6b6cfc902344eca55d7b3e1e.tar.gz
mtk-20170518-0f9285a745233f8a6b6cfc902344eca55d7b3e1e.tar.bz2
awx: fix translation
SVN-Revision: 7316
-rw-r--r--package/busybox/patches/920-awx.patch17
1 files changed, 9 insertions, 8 deletions
diff --git a/package/busybox/patches/920-awx.patch b/package/busybox/patches/920-awx.patch
index 6399717..27a8534 100644
--- a/package/busybox/patches/920-awx.patch
+++ b/package/busybox/patches/920-awx.patch
@@ -97,8 +97,8 @@ diff -urN bb.old/editors/awk.c bb.dev/editors/awk.c
switch (c) {
diff -urN bb.old/editors/awx.c bb.dev/editors/awx.c
--- bb.old/editors/awx.c 1970-01-01 01:00:00.000000000 +0100
-+++ bb.dev/editors/awx.c 2007-05-23 19:13:40.459655704 +0200
-@@ -0,0 +1,632 @@
++++ bb.dev/editors/awx.c 2007-05-23 22:37:38.547183608 +0200
+@@ -0,0 +1,633 @@
+/*
+ * awk web extension
+ *
@@ -170,14 +170,14 @@ diff -urN bb.old/editors/awx.c bb.dev/editors/awx.c
+
+ p2 = strstr(p, TR_END);
+ if (p2 == NULL) {
-+ p2 = xstrdup(p);
++ p2 = xstrdup(l);
+ tr_abort = 1;
+ break;
+ }
+
+ *p = 0;
-+ *p2 = 0;
+ len += strlen((tok[_pos++] = l));
++ *p2 = 0;
+ len += strlen((tok[_pos++] = translate_lookup(p + strlen(TR_START))));
+
+ l = p2;
@@ -192,11 +192,12 @@ diff -urN bb.old/editors/awx.c bb.dev/editors/awx.c
+ strcat(p, tok[i]);
+ p += strlen(tok[i]);
+ }
-+ if (tr_abort && p2) {
-+ if (backlog)
-+ free(backlog);
-+ backlog = p2;
++ if (backlog) {
++ free(backlog);
++ backlog = NULL;
+ }
++ if (tr_abort && p2)
++ backlog = p2;
+
+ return res;
+}