Skip to content

Commit

Permalink
Remove extraneous ","
Browse files Browse the repository at this point in the history
There's no need to do "%s%s", foo , ","
  • Loading branch information
alandekok committed Feb 11, 2014
1 parent 2208879 commit 1ad6477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -2534,7 +2534,7 @@ int tls_success(tls_session_t *ssn, REQUEST *request)
vp;
vp = pairnext(&cursor)) {
vp_prints(buf, sizeof(buf), vp);
fprintf(vp_file, "\t%s%s\n", buf, ",");
fprintf(vp_file, "\t%s,\n", buf);
}
fclose(vp_file);
}
Expand Down

0 comments on commit 1ad6477

Please sign in to comment.