diff options
author | Tim Potter <tpot@samba.org> | 2001-11-05 00:02:38 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-05 00:02:38 +0000 |
commit | d876260d885ad991526544756609ea38e4867028 (patch) | |
tree | c46bb453539dfb988b7217f1e65b2656867c3a70 /source3/rpc_server | |
parent | 59bc781854d623235149eb329fd5c3b89e10501a (diff) | |
download | samba-d876260d885ad991526544756609ea38e4867028.tar.gz samba-d876260d885ad991526544756609ea38e4867028.tar.bz2 samba-d876260d885ad991526544756609ea38e4867028.zip |
Don't put a \n on the end of the arg to exit_server()
(This used to be commit dfb8566220c3e90ca2b757ea124f53aed103269e)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index a47553dcd1..ddc8f3cd2d 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -81,7 +81,7 @@ void init_rpc_pipe_hnd(void) { bmap = bitmap_allocate(MAX_OPEN_PIPES); if (!bmap) - exit_server("out of memory in init_rpc_pipe_hnd\n"); + exit_server("out of memory in init_rpc_pipe_hnd"); } /**************************************************************************** |