Hi,<br><br>I tried your version of the Load-Plugin applet. Unfortunately it makes de device reboot everytime I click on the applet. I could repeat the problem inside scratchbox. After going through the source, I found out that the problem is swapname not being initialized the first time. Here's a small patch to make it work.
<br><br><span style="font-family: courier new,monospace;">diff -Naur loadapplet-aw/load-plugin.c loadapplet-henry/load-plugin.c </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
--- loadapplet-aw/load-plugin.c 2006-02-28 00:32:41.000000000 +0100</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">+++ loadapplet-henry/load-plugin.c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2006-02-27 22:50:
01.000000000 +0100</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">@@ -536,7 +536,7 @@</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gtk_menu_shell_append(GTK_MENU_SHELL(info-&gt;menu),</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; info-&gt;menu_separator);</span>
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Swap */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (strncmp(swapname, &quot;&quot;, 1) != 0) {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (swapname &amp;&amp; strncmp(swapname, &quot;&quot;, 1) != 0) {
</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (swapisactive())</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sprintf(label, &quot;swapoff %s (%d MB used)&quot;, swapname, (swapused+512)/1024);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else</span>
<br><br>Regards,<br><br>Henry<br>