aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-17 20:30:24 -0700
committerPaul Eggert2011-03-17 20:30:24 -0700
commit401bf9b4708c19d3c86c888ce482014ca559a5b8 (patch)
treed69e75d88c70f4c5d3da2501b4afec51cf51d563 /src/ChangeLog
parenta3a6c54ec72118e8d22d2ecd608df5193c8926a3 (diff)
downloademacs-401bf9b4708c19d3c86c888ce482014ca559a5b8.tar.gz
emacs-401bf9b4708c19d3c86c888ce482014ca559a5b8.zip
process.c: Use socklen_t, not int, for socket lengths.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d97969c24db..6eaa52ee285 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12011-03-18 Paul Eggert <eggert@cs.ucla.edu>
2
3 * process.c (Fmake_network_process): Use socklen_t, not int,
4 where POSIX says socklen_t is required in portable programs.
5 This fixes a porting bug on hosts like 64-bit HP-UX, where
6 socklen_t is wider than int.
7 (Fmake_network_process, server_accept_connection):
8 (wait_reading_process_output, read_process_output):
9 Likewise.
10
12011-03-17 Paul Eggert <eggert@cs.ucla.edu> 112011-03-17 Paul Eggert <eggert@cs.ucla.edu>
2 12
3 Fix more problems found by GCC 4.5.2's static checks. 13 Fix more problems found by GCC 4.5.2's static checks.