summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2002-01-02 05:38:09 +0000
committerMartin Pool <mbp@samba.org>2002-01-02 05:38:09 +0000
commit8d5f5825c4a534a0704e52f93eba878b860c4835 (patch)
tree29aec1d081d57e340cd4e7aeb31683c91d18c072 /source3
parent1f9c32e73859e3f60561e95e1cb4819f656930c8 (diff)
downloadsamba-8d5f5825c4a534a0704e52f93eba878b860c4835.tar.gz
samba-8d5f5825c4a534a0704e52f93eba878b860c4835.tar.bz2
samba-8d5f5825c4a534a0704e52f93eba878b860c4835.zip
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)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/client.h3
1 files changed, 3 insertions, 0 deletions
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 */