aboutsummaryrefslogtreecommitdiff
path: root/korean/hanIM
diff options
context:
space:
mode:
authorCHOI Junho <cjh@FreeBSD.org>2000-07-04 18:26:18 +0000
committerCHOI Junho <cjh@FreeBSD.org>2000-07-04 18:26:18 +0000
commit06c1a9ddb10cb2e4914f3ec53289690631175f01 (patch)
tree6b39c9085093fc25bcc1b6ba47671b55910cc79b /korean/hanIM
parent69dbffee43d0fb16319cf185de779c5f877c661a (diff)
downloadports-06c1a9ddb10cb2e4914f3ec53289690631175f01.tar.gz
ports-06c1a9ddb10cb2e4914f3ec53289690631175f01.zip
Remove patch-aa and add patch-ba.
patch-ba is for building in FreeBSD.
Notes
Notes: svn path=/head/; revision=30192
Diffstat (limited to 'korean/hanIM')
-rw-r--r--korean/hanIM/files/patch-ba44
1 files changed, 44 insertions, 0 deletions
diff --git a/korean/hanIM/files/patch-ba b/korean/hanIM/files/patch-ba
new file mode 100644
index 000000000000..7552b2773f1a
--- /dev/null
+++ b/korean/hanIM/files/patch-ba
@@ -0,0 +1,44 @@
+--- XuiPrefer.c.orig Thu Feb 17 05:44:20 2000
++++ XuiPrefer.c Tue Jul 4 02:17:27 2000
+@@ -63,10 +63,12 @@
+ FILE *fp;
+ char filename[BUFSIZ];
+ int found = 0;
+- char *line, *optstart;
+- int line_length;
++ /*char *line, *optstart;*/
++ char *optstart;
++ char line[BUFSIZ];
++ /*int line_length;*/
+ int name_length;
+- size_t line_allocated;
++ /*size_t line_allocated;*/
+
+ strcpy(value, def);
+
+@@ -76,11 +78,11 @@
+ return;
+
+ /* Check each line to see if we have this entry already. */
+- line = NULL;
+- line_allocated = 0;
++ /*line = NULL;
++ line_allocated = 0;*/
+ name_length = strlen(name);
+
+- while ((line_length = getline(&line, &line_allocated, fp)) >= 0)
++ while (fgets(line, BUFSIZ, fp))
+ {
+ /* skip over comment lines */
+ if (line[0] == '#')
+@@ -104,8 +106,8 @@
+ strcpy(value, optstart);
+ }
+ }
+- if (line != NULL)
+- free(line);
++ /*if (line != NULL)
++ free(line);*/
+
+ return (Boolean)found;
+ }