From 8d5f5825c4a534a0704e52f93eba878b860c4835 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 2 Jan 2002 05:38:09 +0000 Subject: struct cli_state remembers the pipe name that it's talking to, if any, so that we can print it in later debug messages. (This used to be commit 37ae84f782e1de6fcea92acb2189683cdf8e7e92) --- source3/include/client.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3') diff --git a/source3/include/client.h b/source3/include/client.h index fde001813d..a8be1d16e1 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -142,6 +142,9 @@ struct cli_state { /* was this structure allocated by cli_initialise? If so, then free in cli_shutdown() */ BOOL allocated; + + /* Name of the pipe we're talking to, if any */ + fstring pipe_name; }; #endif /* _CLIENT_H */ -- cgit