diff options
author | Jeremy Allison <jra@samba.org> | 2001-08-26 20:05:33 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-08-26 20:05:33 +0000 |
commit | d309035c3eac3393252031218525923871d5860c (patch) | |
tree | 273aafb3782becc3d130ed22821b1342a63d8aca | |
parent | 4a3f07456d0a04b84916a99af6ce1cbe65e0370c (diff) | |
download | samba-d309035c3eac3393252031218525923871d5860c.tar.gz samba-d309035c3eac3393252031218525923871d5860c.tar.bz2 samba-d309035c3eac3393252031218525923871d5860c.zip |
Spaces -> Tabs.
Jeremy.
(This used to be commit 5b665122f5a785f858f75c0a3c181ae193e2c503)
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index cdcdb82923..3c8e44d84e 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -775,14 +775,15 @@ ssize_t read_from_pipe(pipes_struct *p, char *data, size_t n) * read request. */ - /* This condition should result in the connection being closed. - Netapp filers seem to set it to 0xffff which results in domain - authentications failing. Just ignore it so things work. */ + /* + * This condition should result in the connection being closed. + * Netapp filers seem to set it to 0xffff which results in domain + * authentications failing. Just ignore it so things work. + */ if(n > MAX_PDU_FRAG_LEN) { - DEBUG(5,("read_from_pipe: too large read (%u) requested on " - "pipe %s. We can only service %d sized reads.\n", - (unsigned int)n, p->name, MAX_PDU_FRAG_LEN )); + DEBUG(5,("read_from_pipe: too large read (%u) requested on \ +pipe %s. We can only service %d sized reads.\n", (unsigned int)n, p->name, MAX_PDU_FRAG_LEN )); } /* |