Skip to content

Commit

Permalink
consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfunley committed Apr 27, 2010
1 parent bf05628 commit b512345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com/google/code/juds/UnixDomainSocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Java_com_google_code_juds_UnixDomainSocket_nativeOpen(JNIEnv * jEnv,

s = socket(PF_UNIX, SOCK_TYPE(jSocketType), 0);
ASSERTNOERR(s == -1, "nativeOpen: socket");
ASSERTNOERR(connect(s, (struct sockaddr *)&sa, sizeof(sa)) == -1,
ASSERTNOERR(connect(s, (struct sockaddr *)&sa, salen) == -1,
"nativeOpen: connect");

(*jEnv)->ReleaseStringUTFChars(jEnv, jSocketFile, socketFile);
Expand Down

0 comments on commit b512345

Please sign in to comment.