File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
openssl_source/zlib/1.3.1 Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ public static void main(String[] args)
409409 doWork (new File_one_sh ()); // one.sh
410410 }
411411 catch (FileNotFoundException e ) {
412- System .out .println ("Failed: out.sh" );
412+ System .out .println (e . getMessage () );
413413 // ignore
414414 }
415415
Original file line number Diff line number Diff line change 1+ diff -urN zlib-1.2.12.orig/zutil.h zlib-1.2.12/zutil.h
2+ --- zlib-1.2.12.orig/zutil.h 2022-03-28 09:39:42.000000000 +1000
3+ +++ zlib-1.2.12/zutil.h 2022-04-27 12:51:00.908632154 +1000
4+ @@ -42,6 +42,11 @@
5+ typedef ush FAR ushf;
6+ typedef unsigned long ulg;
7+
8+ + /* 32 bit HP/UX compiler we use won't handle the large constants below */
9+ + #if defined(__hpux) && !defined(__LP64__)
10+ + # define Z_U8 0xffffffffffffffff
11+ + #endif
12+ +
13+ #if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC)
14+ # include <limits.h>
15+ # if (ULONG_MAX == 0xffffffffffffffff)
You can’t perform that action at this time.
0 commit comments