diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-17 19:03:41 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-17 19:03:41 +0000 |
commit | 046c2c32dd7268cc51de9748f42c14abc102e4f6 (patch) | |
tree | 10e45a24782e633b9f6e1f8b427fac91ee2ddfa8 /AuGetAddr.c | |
parent | dcc3fc52f917603df94ef4207f1dec9238dce23b (diff) |
merge XFree86 4.3.0.1 to -CURRENT
Diffstat (limited to 'AuGetAddr.c')
-rw-r--r-- | AuGetAddr.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/AuGetAddr.c b/AuGetAddr.c index af28414..cd6948b 100644 --- a/AuGetAddr.c +++ b/AuGetAddr.c @@ -25,14 +25,13 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ +/* $XFree86: xc/lib/Xau/AuGetAddr.c,v 1.5 2001/12/14 19:54:36 dawes Exp $ */ #include <X11/Xauth.h> #include <X11/Xos.h> -static -binaryEqual (a, b, len) -register char *a, *b; -register int len; +static int +binaryEqual (_Xconst char *a, _Xconst char *b, int len) { while (len--) if (*a++ != *b++) @@ -96,10 +95,8 @@ char *name; /* * Match when: * either family or entry->family are FamilyWild or - * family and entry->family are the same - * and - * either address or entry->address are empty or - * address and entry->address are the same + * family and entry->family are the same and + * address and entry->address are the same * and * either number or entry->number are empty or * number and entry->number are the same |