[Spread-cvs] commit: r519 - branches/reconfig_groups_crash_bugfix/daemon

jonathan at spread.org jonathan at spread.org
Thu May 3 11:41:31 EDT 2012


Author: jonathan
Date: 2012-05-03 11:41:31 -0400 (Thu, 03 May 2012)
New Revision: 519

Modified:
   branches/reconfig_groups_crash_bugfix/daemon/groups.c
Log:
bugfix for wrong name pointer

Modified: branches/reconfig_groups_crash_bugfix/daemon/groups.c
===================================================================
--- branches/reconfig_groups_crash_bugfix/daemon/groups.c	2012-05-02 20:56:28 UTC (rev 518)
+++ branches/reconfig_groups_crash_bugfix/daemon/groups.c	2012-05-03 15:41:31 UTC (rev 519)
@@ -492,7 +492,7 @@
         }
 
         /* find tmp_grp corresponding to grp */
-        stdskl_find(&tmp_GroupsList, &it, &grp->name);
+        stdskl_find(&tmp_GroupsList, &it, &grp);
         if (stdskl_is_end(&tmp_GroupsList, &it)) {
             Alarmp( SPLOG_FATAL, GROUPS, "G_signal_conf_reload: failed to find group (%s) in tmp_GroupsList\n", grp->name);
         }




More information about the Spread-cvs mailing list