Menu

#696 esniper encountered a bug

v1.0 (example)
closed-fixed
nobody
None
5
2019-03-10
2015-11-29
Tony G
No

Automated esniper bug report.
esniper version 2.31.0
libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
Error encountered in function ebayLogin in auction.c line 489
auction = 252180802957, price = 32.29, remain = 80593
latency = 1, result = -1, error = 19
buf = 0x8605e58, size = 164562, read = 0x8605e58
time = 1448800675, offset = 0
pagename = "Cyber Monday Deals Now On!", pageid = "(null)", srcid = "(null)"
specified options or config values:
1 x username(u) =
1 x password() =

1 x seconds(s) = 5
2 x quantity(q) = 1
1 x (c) = "/usr/local/bin/config.txt"
1 x (f) = "/usr/local/bin/auction.txt"
1 x reduce() = 1
1 x bid() = 1
1 x debug(d) = 1
1 x batch(b) = 0
1 x logdir(l) = "/home/share"
unknown pageinfo

1 Attachments

Discussion

  • Tony G

    Tony G - 2015-11-29

    ps: now esniper is saying
    Auction <iterm-number>: Login failed
    yikes!

     
  • Helmut Heller

    Helmut Heller - 2015-11-29

    Yup, same here. It's because eBay put in an extra "Cyber Monday" page. I just don't know how to skip over it in source code.

     
  • Helmut Heller

    Helmut Heller - 2015-11-29

    OK, easy enough! Just add the "Cyber monday" line and the OR operator (||) in auction.c in line 477 to make the if code look like this:

                if ((pp->srcId && !strcmp(pp->srcId, "SignInAlertSupressor"))||
                    (pp->pageName &&
                        (!strncasecmp(pp->pageName, "MyeBay", 6) ||
                         !strncasecmp(pp->pageName, "My eBay", 7) ||
                         !strncasecmp(pp->pageName, "Watch list", 10) ||
                         !strncasecmp(pp->pageName, "Purchase History", 16) ||
                         !strncasecmp(pp->pageName, "Electronics", 11)) ||
                         !strncasecmp(pp->pageName, "Cyber Monday Deals Now On!", 27)
                    ))
    
     

    Last edit: Helmut Heller 2015-11-29
  • Tony G

    Tony G - 2015-11-30

    thanks very much for that, I reinstalled esniper with the new auction.c and esniper is now working again.

     
  • Wolfgang Schnerring

    Thanks Helmut Heller for the bugfix, can confirm it works for me, too.

     
  • Michael S.

    Michael S. - 2019-03-10
    • status: open --> closed-fixed
     

Log in to post a comment.