Skip to content

Commit

Permalink
Merge branch 'collectd-5.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenk committed Dec 6, 2015
2 parents e7bbae6 + 0c00468 commit 584f57c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2227,7 +2227,7 @@ then
fi

AC_MSG_CHECKING([for libjvm.so])
TMPVAR=`find -L "$with_java_home" -type f -name libjvm.so -o -name libjvm.dylib -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
if test "x$TMPVAR" != "x"
then
AC_MSG_RESULT([found in $TMPVAR])
Expand Down
3 changes: 2 additions & 1 deletion src/multimeter.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,10 @@ static int multimeter_init (void)
int rts = TIOCM_RTS;
double value;

memset (&tios, 0, sizeof (tios));
tios.c_cflag = B1200 | CS7 | CSTOPB | CREAD | CLOCAL;
tios.c_iflag = IGNBRK | IGNPAR;
tios.c_oflag = 0;
tios.c_oflag = 0;
tios.c_lflag = 0;
tios.c_cc[VTIME] = 3;
tios.c_cc[VMIN] = LINE_LENGTH;
Expand Down

0 comments on commit 584f57c

Please sign in to comment.