svn commit: samba r17266 - in branches/tmp/vl-messaging/source/lib:
.
vlendec at samba.org
vlendec at samba.org
Thu Jul 27 09:40:56 GMT 2006
Author: vlendec
Date: 2006-07-27 09:40:55 +0000 (Thu, 27 Jul 2006)
New Revision: 17266
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17266
Log:
In the cluster case with IP addresses, 20 bytes are not enough
Modified:
branches/tmp/vl-messaging/source/lib/messages_tdb.c
Changeset:
Modified: branches/tmp/vl-messaging/source/lib/messages_tdb.c
===================================================================
--- branches/tmp/vl-messaging/source/lib/messages_tdb.c 2006-07-27 09:37:55 UTC (rev 17265)
+++ branches/tmp/vl-messaging/source/lib/messages_tdb.c 2006-07-27 09:40:55 UTC (rev 17266)
@@ -72,7 +72,7 @@
static TDB_DATA message_key_pid(struct process_id pid)
{
- static char key[20];
+ static char key[32];
TDB_DATA kbuf;
slprintf(key, sizeof(key)-1, "PID/%s", procid_str_static(&pid));
More information about the samba-cvs
mailing list