Skip to content

Commit

Permalink
[svn] Hack to allow some more warnings, already present in configure …
Browse files Browse the repository at this point in the history
…(?).
  • Loading branch information
jilles committed Mar 30, 2007
1 parent 64f2a7e commit 5c5d24f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
jilles 2007/03/29 20:03:06 UTC (20070329-3319)
Log:
Merge old trunk r2077,r2079:
- Move closing of servlink control fd to close_connection()
instead of doing it in exit_local_server(), and make sure
we first close the data fd and then the control fd.
- Have servlink process ready fds in order net, data, ctrl
instead of ctrl, data, net. This seems to fix the problem
that squit reasons do not show up on the other side of a
ziplink (by making it send any final SQUIT and/or ERROR
before noticing the closed control fd).


Changes: Modified:
+1 -1 trunk/servlink/io.c (File Modified)
+3 -12 trunk/src/client.c (File Modified)


jilles 2007/03/28 23:17:06 UTC (20070328-3317)
Log:
Don't show the UID if a TS6 server sends a kick with
Expand Down
4 changes: 2 additions & 2 deletions aclocal.m4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $Id: aclocal.m4 918 2006-02-23 18:17:21Z nenolod $ - aclocal.m4 - Autoconf fun...
# $Id: aclocal.m4 3321 2007-03-30 23:32:43Z jilles $ - aclocal.m4 - Autoconf fun...
AC_DEFUN([AC_DEFINE_DIR], [
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
Expand Down Expand Up @@ -34,7 +34,7 @@ AC_DEFUN([CHARYBDIS_C_GCC_TRY_FLAGS],[
#include <stdio.h>
int main(void);
],[
strcmp("a","b"); fprintf(stdout,"test ok\n");
(void)strcmp("a","b"); fprintf(stdout,"test ok\n");
], [$2=yes], [$2=no])
CFLAGS="${oldcflags}"])
if test "x$$2" = xyes; then
Expand Down
2 changes: 1 addition & 1 deletion include/serno.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define SERNO "20070328-3317"
#define SERNO "20070329-3319"

0 comments on commit 5c5d24f

Please sign in to comment.