b69576337c
Fri Aug 25 2000 Bill Nottingham <notting@redhat.com> - add encryption code (#16878) Thu Jul 13 2000 Prospector <bugzilla@redhat.com> - automatic rebuild Sun Jun 11 2000 Bill Nottingham <notting@redhat.com> - rebuild in new environment Mon Mar 13 2000 Bill Nottingham <notting@redhat.com> - spec file cleanups (#10143) Mon Feb 07 2000 Bill Nottingham <notting@redhat.com> - fix some perms Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com> - fix description - man pages are compressed Tue Jan 11 2000 Bill Nottingham <notting@redhat.com> - update to 2.3 Fri Jul 30 1999 Bill Nottingham <notting@redhat.com> - update to 2.2 Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 8) Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com> - updated text in the spec file Fri Jan 15 1999 Cristian Gafton <gafton@redhat.com> - patch top build on the arm Mon Dec 21 1998 Michael Maher <mike@redhat.com> - built package for 6.0 Mon Aug 10 1998 Jeff Johnson <jbj@redhat.com> - build root Fri May 08 1998 Prospector System <bugs@redhat.com> - translations modified for de, fr, tr Thu Jul 10 1997 Erik Troan <ewt@redhat.com> - built against glibc
94 lines
2.0 KiB
Diff
94 lines
2.0 KiB
Diff
--- zip-2.3/zip.h.zip Mon Nov 8 14:36:51 1999
|
|
+++ zip-2.3/zip.h Tue Jan 11 11:46:06 2000
|
|
@@ -60,6 +60,7 @@
|
|
|
|
/* Set up portability */
|
|
#include "tailor.h"
|
|
+#include <strings.h>
|
|
|
|
#ifdef USE_ZLIB
|
|
# include "zlib.h"
|
|
@@ -433,12 +434,6 @@
|
|
int setfileattr OF((char *, int));
|
|
char *tempname OF((char *));
|
|
int fcopy OF((FILE *, FILE *, ulg));
|
|
-
|
|
-#ifdef ZMEM
|
|
- char *memset OF((char *, int, unsigned int));
|
|
- char *memcpy OF((char *, char *, unsigned int));
|
|
- int memcmp OF((char *, char *, unsigned int));
|
|
-#endif /* ZMEM */
|
|
|
|
/* in system dependent fileio code (<system>.c) */
|
|
#ifndef UTIL
|
|
--- zip-2.3/fileio.c.zip Sun Nov 7 05:29:03 1999
|
|
+++ zip-2.3/fileio.c Tue Jan 11 11:46:43 2000
|
|
@@ -918,67 +918,3 @@
|
|
}
|
|
|
|
#endif /* NO_RENAME */
|
|
-
|
|
-
|
|
-#ifdef ZMEM
|
|
-
|
|
-/************************/
|
|
-/* Function memset() */
|
|
-/************************/
|
|
-
|
|
-/*
|
|
- * memset - for systems without it
|
|
- * bill davidsen - March 1990
|
|
- */
|
|
-
|
|
-char *
|
|
-memset(buf, init, len)
|
|
-register char *buf; /* buffer loc */
|
|
-register int init; /* initializer */
|
|
-register unsigned int len; /* length of the buffer */
|
|
-{
|
|
- char *start;
|
|
-
|
|
- start = buf;
|
|
- while (len--) *(buf++) = init;
|
|
- return(start);
|
|
-}
|
|
-
|
|
-
|
|
-/************************/
|
|
-/* Function memcpy() */
|
|
-/************************/
|
|
-
|
|
-char *
|
|
-memcpy(dst,src,len) /* v2.0f */
|
|
-register char *dst, *src;
|
|
-register unsigned int len;
|
|
-{
|
|
- char *start;
|
|
-
|
|
- start = dst;
|
|
- while (len--)
|
|
- *dst++ = *src++;
|
|
- return(start);
|
|
-}
|
|
-
|
|
-
|
|
-/************************/
|
|
-/* Function memcmp() */
|
|
-/************************/
|
|
-
|
|
-int
|
|
-memcmp(b1,b2,len) /* jpd@usl.edu -- 11/16/90 */
|
|
-register char *b1, *b2;
|
|
-register unsigned int len;
|
|
-{
|
|
-
|
|
- if (len) do { /* examine each byte (if any) */
|
|
- if (*b1++ != *b2++)
|
|
- return (*((uch *)b1-1) - *((uch *)b2-1)); /* exit when miscompare */
|
|
- } while (--len);
|
|
-
|
|
- return(0); /* no miscompares, yield 0 result */
|
|
-}
|
|
-
|
|
-#endif /* ZMEM */
|