diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /lib-src/pop.c | |
parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz |
Whitespace changes.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r-- | lib-src/pop.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index a94e06fbd87..ae1000742cc 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -34,15 +34,15 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include "ntlib.h" #include <winsock.h> #undef SOCKET_ERROR -#define RECV(s,buf,len,flags) recv(s,buf,len,flags) -#define SEND(s,buf,len,flags) send(s,buf,len,flags) -#define CLOSESOCKET(s) closesocket(s) +#define RECV(s,buf,len,flags) recv (s,buf,len,flags) +#define SEND(s,buf,len,flags) send (s,buf,len,flags) +#define CLOSESOCKET(s) closesocket (s) #else #include <netinet/in.h> #include <sys/socket.h> -#define RECV(s,buf,len,flags) read(s,buf,len) -#define SEND(s,buf,len,flags) write(s,buf,len) -#define CLOSESOCKET(s) close(s) +#define RECV(s,buf,len,flags) read (s,buf,len) +#define SEND(s,buf,len,flags) write (s,buf,len) +#define CLOSESOCKET(s) close (s) #endif #include <pop.h> @@ -101,7 +101,7 @@ extern char *krb_realmofhost (/* char * */); #endif /* KERBEROS */ #ifndef WINDOWSNT -#if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H) +#if !defined (HAVE_H_ERRNO) || !defined (HAVE_CONFIG_H) extern int h_errno; #endif #endif @@ -1067,7 +1067,7 @@ socket_connection (char *host, int flags) } #ifdef HAVE_GETADDRINFO - memset (&hints, 0, sizeof(hints)); + memset (&hints, 0, sizeof (hints)); hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_CANONNAME; hints.ai_family = AF_INET; @@ -1159,7 +1159,7 @@ socket_connection (char *host, int flags) krb5_free_context (kcontext); strcpy (pop_error, KRB_ERROR); strncat (pop_error, error_message (rem), - ERROR_MAX - sizeof(KRB_ERROR)); + ERROR_MAX - sizeof (KRB_ERROR)); CLOSESOCKET (sock); return (-1); } @@ -1212,7 +1212,7 @@ socket_connection (char *host, int flags) ERROR_MAX - strlen (pop_error) - 1); } #elif defined HAVE_KRB5_ERROR_E_TEXT - if (err_ret && err_ret->e_text && strlen(*err_ret->e_text)) + if (err_ret && err_ret->e_text && strlen (*err_ret->e_text)) { strncat (pop_error, " [server says '", ERROR_MAX - strlen (pop_error) - 1); |