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));