File: 15-gcc-warning.patch

package info (click to toggle)
solid-pop3d 0.15-27
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,716 kB
  • ctags: 1,497
  • sloc: ansic: 6,364; sh: 2,084; makefile: 486
file content (23 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Robert Luberda <robert@debian.org>
Date: Sun, 6 Nov 2005 16:15:00 +0100
Subject: 15 gcc warning

Fix for `implicit declaration of memcpy' gcc warnings
---
 src/md5.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/md5.c b/src/md5.c
index 931119b..408ef3d 100644
--- a/src/md5.c
+++ b/src/md5.c
@@ -22,7 +22,7 @@
 
 #include <sys/types.h>
 
-#if 0				/* Get rid of implicit bcopy declaration warnings */
+#if 1				/* Get rid of implicit bcopy declaration warnings */
 #if STDC_HEADERS || defined _LIBC
 #include <stdlib.h>
 #endif
--