1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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 commit is contained in:
Martin Pool 0001-01-01 00:00:00 +00:00
parent 95abb2473b
commit 37ae84f782

View File

@ -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 */