Skip to content

Commit

Permalink
fixed error message for 'ns_pools set' command.
Browse files Browse the repository at this point in the history
  • Loading branch information
gneumann committed Jan 31, 2009
1 parent 742dc00 commit 671b7da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nsd/pools.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* Routines for the managing the connection thread pools.
*/

static const char *RCSID = "@(#) $Header: /Users/dossy/Desktop/cvs/aolserver/nsd/pools.c,v 1.14 2008/12/27 00:36:38 gneumann Exp $, compiled: " __DATE__ " " __TIME__;
static const char *RCSID = "@(#) $Header: /Users/dossy/Desktop/cvs/aolserver/nsd/pools.c,v 1.15 2009/01/31 21:23:47 gneumann Exp $, compiled: " __DATE__ " " __TIME__;

#include "nsd.h"

Expand Down Expand Up @@ -153,7 +153,7 @@ NsTclPoolsObjCmd(ClientData data, Tcl_Interp *interp, int objc, Tcl_Obj **objv)

case PSetIdx:
if (objc < 3 || (((objc - 3) % 2) != 0)) {
Tcl_WrongNumArgs(interp, 2, objv, "limit ?opt val opt val...?");
Tcl_WrongNumArgs(interp, 2, objv, "pool ?opt val opt val...?");
return TCL_ERROR;
}
pool = Tcl_GetString(objv[2]);
Expand Down

0 comments on commit 671b7da

Please sign in to comment.