diff options
author | Seven Du <[email protected]> | 2010-06-16 22:16:57 +0800 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-07-07 11:43:10 +0200 |
commit | ebcab38751aee5090093d38904c187d731f0670c (patch) | |
tree | daf364fcd571a0aee1fda29f96923c613392e17c /erts/epmd/src/epmd_srv.c | |
parent | 8495f694672a2bb6d1a4a25f9a93aab5c9fc916b (diff) | |
download | otp-ebcab38751aee5090093d38904c187d731f0670c.tar.gz otp-ebcab38751aee5090093d38904c187d731f0670c.tar.bz2 otp-ebcab38751aee5090093d38904c187d731f0670c.zip |
allow epmd -stop name to unregister a client from epmd
Diffstat (limited to 'erts/epmd/src/epmd_srv.c')
-rw-r--r-- | erts/epmd/src/epmd_srv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/epmd/src/epmd_srv.c b/erts/epmd/src/epmd_srv.c index 34f657fb16..c836bf0bb7 100644 --- a/erts/epmd/src/epmd_srv.c +++ b/erts/epmd/src/epmd_srv.c @@ -591,7 +591,7 @@ static void do_request(g, fd, s, buf, bsize) if (bsize <= 1) { - dbg_printf(g,0,"packet to small for request PORT2_REQ (%d)", bsize); + dbg_printf(g,0,"packet too small for request PORT2_REQ (%d)", bsize); return; } @@ -740,7 +740,7 @@ static void do_request(g, fd, s, buf, bsize) dbg_printf(g,1,"** got STOP_REQ"); if (bsize <= 1 ) { - dbg_printf(g,0,"packet to small for request STOP_REQ (%d)",bsize); + dbg_printf(g,0,"packet too small for request STOP_REQ (%d)",bsize); return; } @@ -902,7 +902,7 @@ static void node_init(EpmdVars *g) /* We have got a close on a connection and it may be a - EPMD_ALIVE_CLOSE_REQ. Note that this call shouild be called + EPMD_ALIVE_CLOSE_REQ. Note that this call should be called *before* calling conn_close() */ static int node_unreg(EpmdVars *g,char *name) |