Added TODO and interim patches

This commit is contained in:
mayuresh 2019-04-26 04:25:20 +00:00
parent bd0190492a
commit abf9cfce7a
3 changed files with 42 additions and 0 deletions

16
squid4/TODO Normal file
View File

@ -0,0 +1,16 @@
- Firstly these patches aren't needed on 64 bit system. Needed on 32bit system
only. Further these are just quick fixes. Can be improved and shared
upstream.
patch-src_acl_external_kerberos__ldap__group_support__resolv.cc
patch-src_fs_ufs_RebuildState.h
- Need to get rc script related code from squid3 makefile
- Need to get (at least) those options available in squid3 here (first checking
whether each one is still supported)
- ssl option needs to be checked for compatibility with NetBSD >= 8.99 as ssl
has been upgraded
- Other cosmetics

View File

@ -0,0 +1,13 @@
$NetBSD$
--- src/acl/external/kerberos_ldap_group/support_resolv.cc.orig 2019-02-19 02:46:22.000000000 +0000
+++ src/acl/external/kerberos_ldap_group/support_resolv.cc
@@ -396,7 +396,7 @@ get_ldap_hostname_list(struct main_args
#if (SIZEOF_LONG == 8)
error("%s| %s: ERROR: Inconsistence message length: %ld!=0\n", LogTime(), PROGRAM, buffer + len - p);
#else
- error((char *) "%s| %s: ERROR: Inconsistence message length: %d!=0\n", LogTime(), PROGRAM, buffer + len - p);
+ error((char *) "%s| %s: ERROR: Inconsistence message length: %ld!=0\n", LogTime(), PROGRAM, buffer + len - p);
#endif
goto finalise;
}

View File

@ -0,0 +1,13 @@
$NetBSD$
--- src/fs/ufs/RebuildState.h.orig 2019-02-19 02:46:22.000000000 +0000
+++ src/fs/ufs/RebuildState.h
@@ -54,7 +54,7 @@ public:
dirent_t *entry;
DIR *td;
char fullpath[MAXPATHLEN];
- char fullfilename[MAXPATHLEN*2];
+ char fullfilename[MAXPATHLEN*3];
StoreRebuildData counts;