sub get_misc_stats {
  open(WVIN, "$fromconf{wicontrol} -i $fromconf{interface} -o|") or die "Could not correctly execute $fromconf{wicontrol}";
  while (<WVIN>) {
        chomp;
	$_ =~ /^(.*):(.*)/;
        if (!$2) {
                $g_miscstat{$1}="Not set";
        }
        else {
                $g_miscstat{$1}=$2;
        }
  };
  close (WVIN);
  return ($true);
}

