This fixes a typo which was causing this function to check equality incorrectly.
Unfortunately this seems to have no effect on any open ortho-related bugs.
Closes #2047.
- updated Graphviz bug report URL in the Autotools build system
- Fix `WIN32` path of `gvc.def` specified in `libgvc_la_LDFLAGS`
+### Fixed
+
+- ortho's eqEndSeg incorrectly modifies its arguments #2047
+
## [2.47.3] - 2021-06-19
### Changed
static int
eqEndSeg (bend S1l2, bend S2l2, bend T1, bend T2)
{
- if (((S1l2==T2)&&(S2l2=!T2))
+ if (((S1l2==T2)&&(S2l2!=T2))
|| ((S1l2==B_NODE)&&(S2l2==T1)))
return(0);
else