From: Jeremy Allison Date: Sun, 26 Aug 2001 20:05:33 +0000 (+0000) Subject: Spaces -> Tabs. X-Git-Tag: samba-2.2.5pre1~1555^2~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b665122f5a785f858f75c0a3c181ae193e2c503;p=thirdparty%2Fsamba.git Spaces -> Tabs. Jeremy. --- diff --git a/source/rpc_server/srv_pipe_hnd.c b/source/rpc_server/srv_pipe_hnd.c index cdcdb82923f..3c8e44d84e6 100644 --- a/source/rpc_server/srv_pipe_hnd.c +++ b/source/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 )); } /*