Merge branch 'collectd-5.0' into collectd-5.1
authorFlorian Forster <octo@collectd.org>
Fri, 7 Sep 2012 09:15:24 +0000 (11:15 +0200)
committerFlorian Forster <octo@collectd.org>
Fri, 7 Sep 2012 09:15:24 +0000 (11:15 +0200)
Conflicts:
src/swap.c

1  2 
configure.in
contrib/collection3/bin/index.cgi
src/Makefile.am
src/collectd.conf.pod
src/snmp.c
src/utils_avltree.c

diff --cc configure.in
Simple merge
@@@ -237,31 -159,30 +237,53 @@@ sub end_htm
    </body>
  </html>
  HTML
 +  $html_started = 0;
 +}
 +
 +sub contains_invalid_chars
 +{
 +  my $str = shift;
 +
 +  for (split (m//, $str))
 +  {
 +    my $n = ord ($_);
 +
 +    # Whitespace is allowed.
 +    if (($n >= 9) && ($n <= 13))
 +    {
 +      next;
 +    }
 +    elsif ($n < 32)
 +    {
 +      return (1);
 +    }
 +  }
 +
 +  return;
  }
  
+ sub contains_invalid_chars
+ {
+   my $str = shift;
+   for (split (m//, $str))
+   {
+     my $n = ord ($_);
+     # Whitespace is allowed.
+     if (($n >= 9) && ($n <= 13))
+     {
+       next;
+     }
+     elsif ($n < 32)
+     {
+       return (1);
+     }
+   }
+   return;
+ }
  sub show_selector
  {
    my $timespan_selection = get_timespan_selection ();
diff --cc src/Makefile.am
Simple merge
Simple merge
diff --cc src/snmp.c
Simple merge
Simple merge