[Fedora-directory-commits] ldapserver/ldap/servers/plugins/pwdstorage clear_pwd.c, 1.4, 1.5 crypt_pwd.c, 1.5, 1.6 dllmain.c, 1.4, 1.5 md5.h, 1.4, 1.5 md5_pwd.c, 1.1, 1.2 md5c.c, 1.4, 1.5 ns-mta-md5_pwd.c, 1.4, 1.5 pwd_init.c, 1.7, 1.8 pwdstorage.h, 1.8, 1.9 sha_pwd.c, 1.7, 1.8 ssha_pwd.c, 1.8, 1.9

Noriko Hosoi (nhosoi) fedora-directory-commits at redhat.com
Fri Nov 10 23:45:13 UTC 2006


Author: nhosoi

Update of /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30269/ldap/servers/plugins/pwdstorage

Modified Files:
	clear_pwd.c crypt_pwd.c dllmain.c md5.h md5_pwd.c md5c.c 
	ns-mta-md5_pwd.c pwd_init.c pwdstorage.h sha_pwd.c ssha_pwd.c 
Log Message:
Resolves: #214533
Summary: configure needs to support --with-fhs (Comment #6)
Changes: Added the following include next to the end of the copyright block.
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+



Index: clear_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/clear_pwd.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clear_pwd.c	19 Apr 2005 22:07:31 -0000	1.4
+++ clear_pwd.c	10 Nov 2006 23:45:10 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * slapd hashed password routines
  *


Index: crypt_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/crypt_pwd.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- crypt_pwd.c	19 Apr 2005 22:07:31 -0000	1.5
+++ crypt_pwd.c	10 Nov 2006 23:45:10 -0000	1.6
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * slapd hashed password routines
  *


Index: dllmain.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/dllmain.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dllmain.c	19 Apr 2005 22:07:31 -0000	1.4
+++ dllmain.c	10 Nov 2006 23:45:10 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
  
  /*
  * Microsoft Windows specifics for LIBPWDSTORAGE DLL


Index: md5.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/md5.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- md5.h	19 Apr 2005 22:07:31 -0000	1.4
+++ md5.h	10 Nov 2006 23:45:10 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * MD5 algorithm used by Netscape Mail Server
  */


Index: md5_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/md5_pwd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- md5_pwd.c	14 Jun 2005 15:44:19 -0000	1.1
+++ md5_pwd.c	10 Nov 2006 23:45:10 -0000	1.2
@@ -34,6 +34,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * MD5 Password Encryption/Comparison routines by David Irving, Fred Brittain,
  * and Aaron Gagnon --  University of Maine Farmington


Index: md5c.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/md5c.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- md5c.c	19 Apr 2005 22:07:31 -0000	1.4
+++ md5c.c	10 Nov 2006 23:45:10 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /* MD5 code taken from reference implementation published in RFC 1321 */
 
 /* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm */


Index: ns-mta-md5_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/ns-mta-md5_pwd.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ns-mta-md5_pwd.c	19 Apr 2005 22:07:31 -0000	1.4
+++ ns-mta-md5_pwd.c	10 Nov 2006 23:45:10 -0000	1.5
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * slapd hashed password routines
  *


Index: pwd_init.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/pwd_init.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pwd_init.c	6 Sep 2005 21:15:15 -0000	1.7
+++ pwd_init.c	10 Nov 2006 23:45:10 -0000	1.8
@@ -36,6 +36,11 @@
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+
 #include <stdio.h>
 #include <string.h>
 #include <sys/types.h>


Index: pwdstorage.h
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/pwdstorage.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pwdstorage.h	10 Nov 2006 01:10:51 -0000	1.8
+++ pwdstorage.h	10 Nov 2006 23:45:10 -0000	1.9
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #ifndef _PWDSTORAGE_H
 #define _PWDSTORAGE_H
 


Index: sha_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/sha_pwd.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sha_pwd.c	10 Nov 2006 01:10:51 -0000	1.7
+++ sha_pwd.c	10 Nov 2006 23:45:10 -0000	1.8
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * slapd hashed password routines
  *


Index: ssha_pwd.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/pwdstorage/ssha_pwd.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ssha_pwd.c	10 Nov 2006 01:10:51 -0000	1.8
+++ ssha_pwd.c	10 Nov 2006 23:45:10 -0000	1.9
@@ -35,6 +35,11 @@
  * Copyright (C) 2005 Red Hat, Inc.
  * All rights reserved.
  * END COPYRIGHT BLOCK **/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 /*
  * slapd hashed password routines
  *




More information about the Fedora-directory-commits mailing list