svn commit: samba r21526 - in branches: SAMBA_3_0/source/lib SAMBA_3_0_25/source/lib

jerry at samba.org jerry at samba.org
Sat Feb 24 13:03:59 GMT 2007


Author: jerry
Date: 2007-02-24 13:03:59 +0000 (Sat, 24 Feb 2007)
New Revision: 21526

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

Log:
Fix stray character in sys_memalign() that is only 
is the case where we don't have memalign() or posix_memalign().


Modified:
   branches/SAMBA_3_0/source/lib/system.c
   branches/SAMBA_3_0_25/source/lib/system.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/system.c
===================================================================
--- branches/SAMBA_3_0/source/lib/system.c	2007-02-24 12:40:43 UTC (rev 21525)
+++ branches/SAMBA_3_0/source/lib/system.c	2007-02-24 13:03:59 UTC (rev 21526)
@@ -59,7 +59,7 @@
 		
 	return NULL;
 #else
-	DEBUG(0,("memalign functionalaity not available on this platform!\n"));
+	DEBUG(0,("memalign functionalaity not available on this platform!\n"));
 	return NULL;
 #endif
 }

Modified: branches/SAMBA_3_0_25/source/lib/system.c
===================================================================
--- branches/SAMBA_3_0_25/source/lib/system.c	2007-02-24 12:40:43 UTC (rev 21525)
+++ branches/SAMBA_3_0_25/source/lib/system.c	2007-02-24 13:03:59 UTC (rev 21526)
@@ -59,7 +59,7 @@
 		
 	return NULL;
 #else
-	DEBUG(0,("memalign functionalaity not available on this platform!\n"));
+	DEBUG(0,("memalign functionalaity not available on this platform!\n"));
 	return NULL;
 #endif
 }



More information about the samba-cvs mailing list