X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Fopendispense2.git;a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=b16c495a76f9e9a784261029e8207cbdbd7b7703;hp=5601c08c653cebaf2f48ca333bec0fdf157868a7;hb=4740d52e909da9e8179955043ee2020bedae6a83;hpb=32b161c885d90286f7d4a72b9d05e947c96069e5 diff --git a/src/client/main.c b/src/client/main.c index 5601c08..b16c495 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -23,7 +23,7 @@ #include #include #include -#include // SHA1 +//#include // SHA1 #define USE_NCURSES_INTERFACE 0 #define DEBUG_TRACE_SERVER 0 @@ -97,7 +97,7 @@ char *trim(char *string); void CompileRegex(regex_t *regex, const char *pattern, int flags); // === GLOBALS === -char *gsDispenseServer = "heathred"; +char *gsDispenseServer = "merlo.ucc.gu.uwa.edu.au"; int giDispensePort = 11020; tItem *gaItems; @@ -1125,7 +1125,7 @@ int ShowItemAt(int Row, int Col, int Width, int Index, int bHilighted) } // If the item isn't availiable for sale, return -1 (so it's skipped) - if( status || price >= giUserBalance ) + if( status || price > giUserBalance ) Index = -1; return Index; @@ -2214,7 +2214,7 @@ char *ReadLine(int Socket) len = recv(Socket, buf+bufPos, BUFSIZ-1-bufPos, 0); if( len < 0 ) { free(ret); - return strdup("499 Client Connection Error\n"); + return strdup("599 Client Connection Error\n"); } } buf[bufPos+len] = '\0';