From 5baba8439761a54c488ff42e4e599b3c93dbe669 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 6 Mar 2007 01:21:41 +0000 Subject: * Added missing header include guards in md5.h and sha1.h. * Some header cleanup on the pacman side of things - we had alpm.h instead alpm_list.h in a few headers. * removed an extra slash in path-building snprintf in server.c. --- lib/libalpm/md5.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/md5.h') diff --git a/lib/libalpm/md5.h b/lib/libalpm/md5.h index dbd0ab92..8ae324e3 100644 --- a/lib/libalpm/md5.h +++ b/lib/libalpm/md5.h @@ -20,8 +20,9 @@ software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. - */ +documentation and/or software. */ +#ifndef _ALPM_MD5_H +#define _ALPM_MD5_H /* POINTER defines a generic pointer type */ typedef unsigned char *POINTER; @@ -47,4 +48,6 @@ void _alpm_MD5Final(unsigned char [16], MD5_CTX *); char* _alpm_MDFile(char *); void _alpm_MDPrint(unsigned char [16]); +#endif /* _ALPM_MD5_H */ + /* vim: set ts=2 sw=2 noet: */ -- cgit v1.2.3-24-g4f1b