diff options
author | Egbert Eich <eich@suse.de> | 2004-04-23 19:54:43 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-04-23 19:54:43 +0000 |
commit | ec8b11f4b1ea888e28d71ee6f3903933d73aa65d (patch) | |
tree | 85c5433de8dca77ba65f1271a2f09a2fe1f9e341 /access.c | |
parent | 37f2b9991615b9f440c08c15457c54ee69f27f38 (diff) |
Merging XORG-CURRENT into trunk
Diffstat (limited to 'access.c')
-rw-r--r-- | access.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,5 @@ /* + * $XdotOrg$ * $Xorg: access.c,v 1.5 2001/02/09 02:05:40 xorgcvs Exp $ * Copyright 1990, 1998 The Open Group @@ -27,7 +28,7 @@ in this Software without prior written authorization from the copyright holder. * Author: Keith Packard, MIT X Consortium */ -/* $XFree86: xc/programs/xdm/access.c,v 3.14 2003/11/23 22:02:07 herrb Exp $ */ +/* $XFree86: xc/programs/xdm/access.c,v 3.13 2003/11/22 04:51:02 dawes Exp $ */ /* * Access control for XDMCP - keep a database of allowable display addresses @@ -903,9 +904,9 @@ void ForEachListenAddr ( h = d->hosts; if (h != NULL) { (*listenfunction) (&h->entry.hostAddress, closure); - } - for (h = h->next; h != NULL; h = h->next) { - (*mcastfunction) (&h->entry.hostAddress, closure); + for (h = h->next; h != NULL; h = h->next) { + (*mcastfunction) (&h->entry.hostAddress, closure); + } } } } |