repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 3da942e2374449248b1359222564db8f9997b090:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 3da942e2374449248b1359222564db8f9997b090
Author: Alexander Barton 
Date:   Sun Feb 27 09:29:13 2005 +0000

    Updated to latest strl{cat|cpy} code of rsync:
    - Make sure that strlcpy() returns the right value when the bufsize is 0.
    - Fixed a bug in strlcat() where it would not properly detect a no-change
      condition if called with an initial string longer than the specified
      size limit (due to an unsigned var's inability to go negative).
    Patch by Florian Westphal, .

diff --git a/src/portab/strlcpy.c b/src/portab/strlcpy.c
index 627b3218839319c588a7068c162643422538e939..
index ..5e2c72228c1c6429d85f290abc0a4cd5e225f4c7 100644
--- a/src/portab/strlcpy.c
+++ b/src/portab/strlcpy.c
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2005 Alexander Barton (alex@barton.de)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -13,13 +13,13 @@
  *
  * Code partially borrowed from compat.c of rsync, written by Andrew
  * Tridgell (1998) and Martin Pool (2002):
- * 
+ * 
  */


 #include "portab.h"

-static char UNUSED id[] = "$Id: strlcpy.c,v 1.3 2005/01/18 09:05:37 alex Exp $";
+static char UNUSED id[] = "$Id: strlcpy.c,v 1.4 2005/02/27 09:29:13 alex Exp $";

 #include "imp.h"
 #include 
@@ -39,10 +39,10 @@ strlcat( CHAR *dst, CONST CHAR *src, size_t size )
 	size_t len1 = strlen( dst );
 	size_t len2 = strlen( src );
 	size_t ret = len1 + len2;
-	
-	if( len1 + len2 >= size ) len2 = size - ( len1 + 1 );
-	if( len2 > 0 )
-	{
+
+	if( size && ( len1 < size - 1 )) {
+		if( len2 >= size - len1 )
+			len2 = size - len1 - 1;
 		memcpy( dst + len1, src, len2 );
 		dst[len1 + len2] = 0;
 	}
@@ -63,10 +63,11 @@ strlcpy( CHAR *dst, CONST CHAR *src, size_t size )
 	size_t len = strlen( src );
 	size_t ret = len;

-	if( size <= 0 ) return 0;
-	if( len >= size ) len = size - 1;
-	memcpy( dst, src, len );
-	dst[len] = 0;
+	if( size > 0 ) {
+		if( len >= size ) len = size - 1;
+		memcpy( dst, src, len );
+		dst[len] = 0;
+	}
 	return ret;
 } /* strlcpy */

-----END OF PAGE-----