Slight updates.
[doldaconnect.git] / clients / test.c
index 382e26e..04f471c 100644 (file)
@@ -12,11 +12,9 @@ void authcallback(int err, wchar_t *reason, void *data)
 
 int main(int argc, char **argv)
 {
-    int i;
     struct pollfd pfd;
     int fd, done;
     struct dc_response *resp;
-    struct dc_intresp *ires;
     
     dc_init();
     fd = dc_connect(NULL);
@@ -41,7 +39,7 @@ int main(int argc, char **argv)
            if(!wcscmp(resp->cmdname, L".connect"))
            {
                printf("Connected: %i\n", resp->code);
-               if(resp->code == 200)
+               if(resp->code == 201)
                    dc_loginasync(NULL, 1, NULL, authcallback, NULL);
            }
            dc_freeresp(resp);