Logged In: NO

Here's a patch for tap.c to work with eplus.
As this alters the login
procedure, other tap services must be tested with it.
Alternatively
save this as tap-eplus.c and use this as the eplus plugin.

(thanks
to Holger Marzen for the original patch for sms_client, see
http://groups.google.com/groups?q=01771167&hl=en&lr=&ie=utf-
8&oe=utf-
8&selm=a559pi%24a15%241%40bluebell.marzen.de&rnum=10
for more)

--- tap.c-orig Mon May 27 13:02:45 2002
+++ tap.c
Mon May 27 13:07:50 2002
@@ -268,7 +268,10 @@

for (i=0; i
< MAX_TRIES; i++)
{
- (smash.write)(fd, REQ1,
strlen(REQ1));
+ /* workaround for eplus germany, don't send first
<cr> */
+ if (i>0) {
+ (smash.write)(fd, REQ1, strlen(REQ1));
+
}

if ((smash.waitfor)(fd, TIME_T2, NULL, 1, ACK1) > 0)

{