2. Pass the RCMDing node's priv level to the command (rather than the
connecting node's privilege level).
3. Pass thru merge requests for other nodes.
+4. Removed a warning from client.pl
25May99=======================================================================
1. try to make the lastin value correct even for local users
2. got rid of the stupid bug that failed to print out the offline message
# deal with args
#
-$call = uc shift @ARGV;
+$call = uc shift @ARGV if @ARGV;
$call = uc $myalias if !$call;
-$connsort = lc shift @ARGV;
+$connsort = lc shift @ARGV if @ARGV;
$connsort = 'local' if !$connsort;
$loginreq = $call eq 'LOGIN';