--- libaitrpc/src/srv.c 2012/05/14 15:22:22 1.9.2.2 +++ libaitrpc/src/srv.c 2012/05/14 15:35:58 1.9.2.3 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: srv.c,v 1.9.2.2 2012/05/14 15:22:22 misho Exp $ +* $Id: srv.c,v 1.9.2.3 2012/05/14 15:35:58 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -803,7 +803,7 @@ rpc_srv_endServer(rpc_srv_t ** __restrict psrv) rpc_func_t *f; if (!psrv || !*psrv) { - rpc_SetErr(EINVAL, "Error:: Can`t destroy server because parameter is null!\n"); + rpc_SetErr(EINVAL, "Can`t destroy server because parameter is null!"); return; } @@ -853,7 +853,7 @@ rpc_srv_loopServer(rpc_srv_t * __restrict srv) struct pollfd pfd; if (!srv) { - rpc_SetErr(EINVAL, "Error:: Invalid parameter can`t start RPC server ...\n"); + rpc_SetErr(EINVAL, "Invalid parameter can`t start RPC server"); return -1; }