summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorWichert Akkerman <wakkerma@debian.org>1999-10-14 01:39:49 +0000
committerWichert Akkerman <wakkerma@debian.org>1999-10-14 01:39:49 +0000
commit0c48a9d84ee5b33bb2204b2ef36b6d36e58e4537 (patch)
tree172556f5565fabe3c437cbd63be1bff08d26551b /main
parentc526472f4ab88e77f2a847c85c01a42c0aeb3cb1 (diff)
downloaddpkg-0c48a9d84ee5b33bb2204b2ef36b6d36e58e4537.tar.gz
Don't hardcode ENOENT in perlscripts
Add mips to archtable
Diffstat (limited to 'main')
-rw-r--r--main/help.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/help.c b/main/help.c
index 98620a2a5..762d77b47 100644
--- a/main/help.c
+++ b/main/help.c
@@ -87,7 +87,6 @@ void checkpath(void) {
while (s) {
p= strchr(s,':');
l= p ? p-s : strlen(s);
- if (l+strlen(*clp)+2>sizeof(buf)) continue;
memcpy(buf,s,l);
if (l) buf[l++]= '/';
strcpy(buf+l,*clp);