summaryrefslogtreecommitdiff
path: root/source3/lib/util_sock.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-13 12:37:01 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-13 12:37:01 +0000
commitf7a657721a7ca6831bfeeecfcf5930f86174b721 (patch)
treeeb82eda4304726c38f2047e7b748bdaefe549ec1 /source3/lib/util_sock.c
parentfef35c5ce042d6b4472b194eabb91c287fd52fd1 (diff)
downloadsamba-f7a657721a7ca6831bfeeecfcf5930f86174b721.tar.gz
samba-f7a657721a7ca6831bfeeecfcf5930f86174b721.tar.bz2
samba-f7a657721a7ca6831bfeeecfcf5930f86174b721.zip
A couple of coding syle updates to follow the re-indent.
(This used to be commit 7417d6f9310188d2ad3d8f41d3dcbe55862c72ac)
Diffstat (limited to 'source3/lib/util_sock.c')
-rw-r--r--source3/lib/util_sock.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index 690b626224..8e7b69cac8 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -221,9 +221,9 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
while (nread < mincnt) {
#ifdef WITH_SSL
- if(fd == sslFd){
+ if (fd == sslFd) {
readret = SSL_read(ssl, buf + nread, maxcnt - nread);
- }else{
+ } else {
readret = read(fd, buf + nread, maxcnt - nread);
}
#else /* WITH_SSL */
@@ -263,7 +263,7 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
selrtn = sys_select_intr(fd+1,&fds,&timeout);
/* Check if error */
- if(selrtn == -1) {
+ if (selrtn == -1) {
/* something is wrong. Maybe the socket is dead? */
DEBUG(0,("read_socket_with_timeout: timeout read. select error = %s.\n", strerror(errno) ));
smb_read_error = READ_ERROR;
@@ -278,7 +278,7 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
}
#ifdef WITH_SSL
- if(fd == sslFd){
+ if (fd == sslFd) {
readret = SSL_read(ssl, buf + nread, maxcnt - nread);
}else{
readret = read(fd, buf + nread, maxcnt - nread);
@@ -305,7 +305,7 @@ static ssize_t read_socket_with_timeout(int fd,char *buf,size_t mincnt,size_t ma
}
/* Return the number we got */
- return((ssize_t)nread);
+ return (ssize_t)nread;
}
/****************************************************************************