I have a module called Fax.pm that submits faxes to a local fax server. It is called by another program called User_utilities.pl.  Everything has worked great for years until recently when I added the following lines to Fax.pm<br>

<br>require "/usr/local/src/rushclient/rush_opps/<a href="http://get_hist.pl" target="_blank">get_hist.pl</a>";<br>my $hist = get_hist();<br><br>The problem is that sometimes I *SOMETIMES* I get:<br><br>Undefined subroutine &Fax::get_hist called at Fax.pm line 130.<br>
<br>After getting this error if I restart User_utilities.pl and try again it works. However, if User_utilities.pm is left running and I try to use Fax.pm again, I get the error again.<br><br>Does anyone know what might be causing this error and what I might do to fix it?<br>
<br> <br>