aboutsummaryrefslogtreecommitdiffstats
path: root/docs/usermanual/.gitignore
diff options
context:
space:
mode:
authorRoman I Khimov <khimov@altell.ru>2010-05-28 16:22:19 +0400
committerRoman I Khimov <khimov@altell.ru>2010-06-10 23:16:15 +0400
commit6c0ea7eb7299914f5b95b7f2f6743d164d82b62c (patch)
treefbac492a9202544248d1c93df668335f4cdd65ce /docs/usermanual/.gitignore
parenta9d3aed0e3fa4d41908a5052dbcb49fca1f40918 (diff)
downloadopenembedded-6c0ea7eb7299914f5b95b7f2f6743d164d82b62c.tar.gz
iperf.inc: don't disable threads for everyone
As per comment in iperf.inc threading was disabled because it doesn't work on one particular configuration. I don't think it's right to cripple everyone's iperf because of that. It also works fine here with NPTL-enabled uclibc, thus limit this hack to epia machine only. Signed-off-by: Roman I Khimov <khimov@altell.ru>
Diffstat (limited to 'docs/usermanual/.gitignore')
0 files changed, 0 insertions, 0 deletions
.sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
--- busybox-1.13.2/archival/libunarchive/get_header_tar.c.orig	2008-11-09 18:28:02.000000000 +0100
+++ busybox-1.13.2/archival/libunarchive/get_header_tar.c	2009-02-11 22:34:52.000000000 +0100
@@ -252,6 +252,8 @@
 			file_header->name = concat_path_file(tar.prefix, tar.name);
 		} else
 			file_header->name = xstrdup(tar.name);
+		if (strlen(file_header->name) > 100) 
+			file_header->name[100] = 0;
 	}
 
 	/* Set bits 12-15 of the files mode */