Skip to content

Commit

Permalink
Fix issue #38
Browse files Browse the repository at this point in the history
  • Loading branch information
ulric committed Feb 17, 2017
1 parent 2c50f69 commit d560fe1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

170217 Corrected typo in pen.c per suggestion by Belinda Liu.
This fixes issue #38.
Released 0.34.1.

161029 Released 0.34.0.

161028 Merged pull request from Vincent Bernat for OpenSSL 1.1.0 compatibility.
This fixes issue #28.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([pen],[0.34.0])
AC_INIT([pen],[0.34.1])
AC_CONFIG_SRCDIR([pen.c])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE
Expand Down
2 changes: 1 addition & 1 deletion pen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ static void do_cmd(char *b, void (*output)(void *, char *, ...), void *op)
}
} else if (!strcmp(p, "conn_max")) {
p = strtok(NULL, " ");
if (p) expand_clienttable(atoi(p));
if (p) expand_conntable(atoi(p));
output(op, "%d\n", connections_max);
} else if (!strcmp(p, "control")) {
output(op, "%s\n", ctrlport);
Expand Down

0 comments on commit d560fe1

Please sign in to comment.