Skip to content

Commit

Permalink
[fix] default user and name values to null to confirm whether or not …
Browse files Browse the repository at this point in the history
…they are set successfully
  • Loading branch information
jcrugzz committed Aug 29, 2013
1 parent d23e049 commit 950779d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ static uv_connect_t connect_req;
static int host_index = -1;
static char** hosts;
static int hosts_length;
static char* user;
static char* name;
static char* user = NULL;
static char* name = NULL;

void forza__on_connect(uv_connect_t* req, int status);
void forza__reconnect_on_close(uv_handle_t* handle);
Expand Down

0 comments on commit 950779d

Please sign in to comment.