svn commit: lorikeet r716 - in trunk/heimdal: . lib/roken

tridge at samba.org tridge at samba.org
Tue May 22 04:16:55 GMT 2007


Author: tridge
Date: 2007-05-22 04:16:54 +0000 (Tue, 22 May 2007)
New Revision: 716

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=716

Log:
merge roken.h updates from samba4
Modified:
   trunk/heimdal/heimdal-lorikeet.diff
   trunk/heimdal/lib/roken/bswap.c
   trunk/heimdal/lib/roken/copyhostent.c
   trunk/heimdal/lib/roken/freeaddrinfo.c
   trunk/heimdal/lib/roken/freehostent.c
   trunk/heimdal/lib/roken/gai_strerror.c
   trunk/heimdal/lib/roken/getaddrinfo.c
   trunk/heimdal/lib/roken/getipnodebyaddr.c
   trunk/heimdal/lib/roken/getipnodebyname.c
   trunk/heimdal/lib/roken/getprogname.c
   trunk/heimdal/lib/roken/hex.c
   trunk/heimdal/lib/roken/hostent_find_fqdn.c
   trunk/heimdal/lib/roken/inet_aton.c
   trunk/heimdal/lib/roken/issuid.c
   trunk/heimdal/lib/roken/setprogname.c
   trunk/heimdal/lib/roken/signal.c
   trunk/heimdal/lib/roken/strsep.c
   trunk/heimdal/lib/roken/strsep_copy.c


Changeset:
Modified: trunk/heimdal/heimdal-lorikeet.diff
===================================================================
--- trunk/heimdal/heimdal-lorikeet.diff	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/heimdal-lorikeet.diff	2007-05-22 04:16:54 UTC (rev 716)
@@ -415,3 +415,224 @@
 + * SUCH DAMAGE. 
 + */
 +
+Index: lib/roken/getprogname.c
+===================================================================
+--- lib/roken/getprogname.c	(revision 715)
++++ lib/roken/getprogname.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: getprogname.c,v 1.3 2005/04/12 11:28:48 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ #ifndef HAVE___PROGNAME
+ const char *__progname;
+Index: lib/roken/setprogname.c
+===================================================================
+--- lib/roken/setprogname.c	(revision 715)
++++ lib/roken/setprogname.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: setprogname.c,v 1.4 2005/08/23 10:19:20 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ #ifndef HAVE___PROGNAME
+ extern const char *__progname;
+Index: lib/roken/getipnodebyaddr.c
+===================================================================
+--- lib/roken/getipnodebyaddr.c	(revision 715)
++++ lib/roken/getipnodebyaddr.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: getipnodebyaddr.c,v 1.3 2005/04/12 11:28:47 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * lookup `src, len' (address family `af') in DNS and return a pointer
+Index: lib/roken/strsep.c
+===================================================================
+--- lib/roken/strsep.c	(revision 715)
++++ lib/roken/strsep.c	(working copy)
+@@ -38,7 +38,7 @@
+ 
+ #include <string.h>
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ #ifndef HAVE_STRSEP
+ 
+Index: lib/roken/freehostent.c
+===================================================================
+--- lib/roken/freehostent.c	(revision 715)
++++ lib/roken/freehostent.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: freehostent.c,v 1.3 2005/04/12 11:28:41 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * free a malloced hostent
+Index: lib/roken/hex.c
+===================================================================
+--- lib/roken/hex.c	(revision 715)
++++ lib/roken/hex.c	(working copy)
+@@ -35,7 +35,7 @@
+ #include <config.h>
+ RCSID("$Id: hex.c,v 1.8 2006/01/09 17:09:29 lha Exp $");
+ #endif
+-#include "roken.h"
++#include <roken.h>
+ #include <ctype.h>
+ #include "hex.h"
+ 
+Index: lib/roken/hostent_find_fqdn.c
+===================================================================
+--- lib/roken/hostent_find_fqdn.c	(revision 715)
++++ lib/roken/hostent_find_fqdn.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: hostent_find_fqdn.c,v 1.3 2005/04/12 11:28:51 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * Try to find a fqdn (with `.') in he if possible, else return h_name
+Index: lib/roken/inet_aton.c
+===================================================================
+--- lib/roken/inet_aton.c	(revision 715)
++++ lib/roken/inet_aton.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: inet_aton.c,v 1.14 2005/04/12 11:28:52 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /* Minimal implementation of inet_aton.
+  * Cannot distinguish between failure and a local broadcast address. */
+Index: lib/roken/gai_strerror.c
+===================================================================
+--- lib/roken/gai_strerror.c	(revision 715)
++++ lib/roken/gai_strerror.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: gai_strerror.c,v 1.7 2005/08/05 09:31:35 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ static struct gai_error {
+     int code;
+Index: lib/roken/bswap.c
+===================================================================
+--- lib/roken/bswap.c	(revision 715)
++++ lib/roken/bswap.c	(working copy)
+@@ -34,7 +34,7 @@
+ #ifdef HAVE_CONFIG_H
+ #include <config.h>
+ #endif
+-#include "roken.h"
++#include <roken.h>
+ 
+ RCSID("$Id: bswap.c,v 1.4 2005/04/12 11:28:35 lha Exp $");
+ 
+Index: lib/roken/issuid.c
+===================================================================
+--- lib/roken/issuid.c	(revision 715)
++++ lib/roken/issuid.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: issuid.c,v 1.6 2005/05/13 07:42:03 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ int ROKEN_LIB_FUNCTION
+ issuid(void)
+Index: lib/roken/strsep_copy.c
+===================================================================
+--- lib/roken/strsep_copy.c	(revision 715)
++++ lib/roken/strsep_copy.c	(working copy)
+@@ -38,7 +38,7 @@
+ 
+ #include <string.h>
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ #ifndef HAVE_STRSEP_COPY
+ 
+Index: lib/roken/freeaddrinfo.c
+===================================================================
+--- lib/roken/freeaddrinfo.c	(revision 715)
++++ lib/roken/freeaddrinfo.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: freeaddrinfo.c,v 1.5 2005/04/12 11:28:41 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * free the list of `struct addrinfo' starting at `ai'
+Index: lib/roken/getipnodebyname.c
+===================================================================
+--- lib/roken/getipnodebyname.c	(revision 715)
++++ lib/roken/getipnodebyname.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: getipnodebyname.c,v 1.4 2005/04/12 11:28:47 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ #ifndef HAVE_H_ERRNO
+ static int h_errno = NO_RECOVERY;
+Index: lib/roken/signal.c
+===================================================================
+--- lib/roken/signal.c	(revision 715)
++++ lib/roken/signal.c	(working copy)
+@@ -37,7 +37,7 @@
+ #endif
+ 
+ #include <signal.h>
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * We would like to always use this signal but there is a link error
+Index: lib/roken/copyhostent.c
+===================================================================
+--- lib/roken/copyhostent.c	(revision 715)
++++ lib/roken/copyhostent.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: copyhostent.c,v 1.3 2005/04/12 11:28:36 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * return a malloced copy of `h'
+Index: lib/roken/getaddrinfo.c
+===================================================================
+--- lib/roken/getaddrinfo.c	(revision 715)
++++ lib/roken/getaddrinfo.c	(working copy)
+@@ -36,7 +36,7 @@
+ RCSID("$Id: getaddrinfo.c,v 1.14 2005/06/16 17:49:29 lha Exp $");
+ #endif
+ 
+-#include "roken.h"
++#include <roken.h>
+ 
+ /*
+  * uses hints->ai_socktype and hints->ai_protocol

Modified: trunk/heimdal/lib/roken/bswap.c
===================================================================
--- trunk/heimdal/lib/roken/bswap.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/bswap.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -34,7 +34,7 @@
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
-#include "roken.h"
+#include <roken.h>
 
 RCSID("$Id: bswap.c,v 1.4 2005/04/12 11:28:35 lha Exp $");
 

Modified: trunk/heimdal/lib/roken/copyhostent.c
===================================================================
--- trunk/heimdal/lib/roken/copyhostent.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/copyhostent.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: copyhostent.c,v 1.3 2005/04/12 11:28:36 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * return a malloced copy of `h'

Modified: trunk/heimdal/lib/roken/freeaddrinfo.c
===================================================================
--- trunk/heimdal/lib/roken/freeaddrinfo.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/freeaddrinfo.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: freeaddrinfo.c,v 1.5 2005/04/12 11:28:41 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * free the list of `struct addrinfo' starting at `ai'

Modified: trunk/heimdal/lib/roken/freehostent.c
===================================================================
--- trunk/heimdal/lib/roken/freehostent.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/freehostent.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: freehostent.c,v 1.3 2005/04/12 11:28:41 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * free a malloced hostent

Modified: trunk/heimdal/lib/roken/gai_strerror.c
===================================================================
--- trunk/heimdal/lib/roken/gai_strerror.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/gai_strerror.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: gai_strerror.c,v 1.7 2005/08/05 09:31:35 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 static struct gai_error {
     int code;

Modified: trunk/heimdal/lib/roken/getaddrinfo.c
===================================================================
--- trunk/heimdal/lib/roken/getaddrinfo.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/getaddrinfo.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: getaddrinfo.c,v 1.14 2005/06/16 17:49:29 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * uses hints->ai_socktype and hints->ai_protocol

Modified: trunk/heimdal/lib/roken/getipnodebyaddr.c
===================================================================
--- trunk/heimdal/lib/roken/getipnodebyaddr.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/getipnodebyaddr.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: getipnodebyaddr.c,v 1.3 2005/04/12 11:28:47 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * lookup `src, len' (address family `af') in DNS and return a pointer

Modified: trunk/heimdal/lib/roken/getipnodebyname.c
===================================================================
--- trunk/heimdal/lib/roken/getipnodebyname.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/getipnodebyname.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: getipnodebyname.c,v 1.4 2005/04/12 11:28:47 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 #ifndef HAVE_H_ERRNO
 static int h_errno = NO_RECOVERY;

Modified: trunk/heimdal/lib/roken/getprogname.c
===================================================================
--- trunk/heimdal/lib/roken/getprogname.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/getprogname.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: getprogname.c,v 1.3 2005/04/12 11:28:48 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 #ifndef HAVE___PROGNAME
 const char *__progname;

Modified: trunk/heimdal/lib/roken/hex.c
===================================================================
--- trunk/heimdal/lib/roken/hex.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/hex.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -35,7 +35,7 @@
 #include <config.h>
 RCSID("$Id: hex.c,v 1.8 2006/01/09 17:09:29 lha Exp $");
 #endif
-#include "roken.h"
+#include <roken.h>
 #include <ctype.h>
 #include "hex.h"
 

Modified: trunk/heimdal/lib/roken/hostent_find_fqdn.c
===================================================================
--- trunk/heimdal/lib/roken/hostent_find_fqdn.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/hostent_find_fqdn.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: hostent_find_fqdn.c,v 1.3 2005/04/12 11:28:51 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /*
  * Try to find a fqdn (with `.') in he if possible, else return h_name

Modified: trunk/heimdal/lib/roken/inet_aton.c
===================================================================
--- trunk/heimdal/lib/roken/inet_aton.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/inet_aton.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: inet_aton.c,v 1.14 2005/04/12 11:28:52 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 /* Minimal implementation of inet_aton.
  * Cannot distinguish between failure and a local broadcast address. */

Modified: trunk/heimdal/lib/roken/issuid.c
===================================================================
--- trunk/heimdal/lib/roken/issuid.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/issuid.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: issuid.c,v 1.6 2005/05/13 07:42:03 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 int ROKEN_LIB_FUNCTION
 issuid(void)

Modified: trunk/heimdal/lib/roken/setprogname.c
===================================================================
--- trunk/heimdal/lib/roken/setprogname.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/setprogname.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -36,7 +36,7 @@
 RCSID("$Id: setprogname.c,v 1.4 2005/08/23 10:19:20 lha Exp $");
 #endif
 
-#include "roken.h"
+#include <roken.h>
 
 #ifndef HAVE___PROGNAME
 extern const char *__progname;

Modified: trunk/heimdal/lib/roken/signal.c
===================================================================
--- trunk/heimdal/lib/roken/signal.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/signal.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -37,7 +37,7 @@
 #endif
 
 #include <signal.h>
-#include "roken.h"
+#include <roken.h>
 
 /*
  * We would like to always use this signal but there is a link error

Modified: trunk/heimdal/lib/roken/strsep.c
===================================================================
--- trunk/heimdal/lib/roken/strsep.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/strsep.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -38,7 +38,7 @@
 
 #include <string.h>
 
-#include "roken.h"
+#include <roken.h>
 
 #ifndef HAVE_STRSEP
 

Modified: trunk/heimdal/lib/roken/strsep_copy.c
===================================================================
--- trunk/heimdal/lib/roken/strsep_copy.c	2007-04-05 05:45:07 UTC (rev 715)
+++ trunk/heimdal/lib/roken/strsep_copy.c	2007-05-22 04:16:54 UTC (rev 716)
@@ -38,7 +38,7 @@
 
 #include <string.h>
 
-#include "roken.h"
+#include <roken.h>
 
 #ifndef HAVE_STRSEP_COPY
 



More information about the samba-cvs mailing list