summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch')
-rw-r--r--meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch b/meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch
new file mode 100644
index 0000000000..d4522ea974
--- /dev/null
+++ b/meta/recipes-extended/man/man-1.6f/man-1.5k-sofix.patch
@@ -0,0 +1,20 @@
1--- man-1.5j/src/man.c.sofix Thu Nov 22 14:51:44 2001
2+++ man-1.5j/src/man.c Thu Nov 22 14:52:44 2001
3@@ -300,7 +300,7 @@
4
5 if (strlen(name0) >= sizeof(ultname))
6 return name0;
7- strcpy(ultname, name0);
8+ strncpy(ultname, name0, BUFSIZE-32);
9 name = ultname;
10
11 again:
12@@ -332,7 +332,7 @@
13 * .so files - we could glob for all possible extensions,
14 * for now: only try .gz
15 */
16- else if (fp == NULL && get_expander(".gz") &&
17+ if (fp == NULL && get_expander(".gz") &&
18 strlen(name)+strlen(".gz") < BUFSIZE) {
19 strcat(name, ".gz");
20 fp = fopen (name, "r");