summaryrefslogtreecommitdiff
path: root/xauth.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:29:03 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:29:03 +0000
commit09cf02b0457f774bd10574c0facf1df29fb83b53 (patch)
tree4114125647494b42fe91521f69cdaf0ee055d93a /xauth.c
parentd013d0b3ecb18ae2f1c162c6a1db89c6b4f063d3 (diff)
downloadxorg-app-xauth-09cf02b0457f774bd10574c0facf1df29fb83b53.tar.gz
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'xauth.c')
-rw-r--r--xauth.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/xauth.c b/xauth.c
index 0a7db7e..9da3269 100644
--- a/xauth.c
+++ b/xauth.c
@@ -28,7 +28,7 @@ in this Software without prior written authorization from The Open Group.
* *
* Author: Jim Fulton, MIT X Consortium
*/
-/* $XFree86: xc/programs/xauth/xauth.c,v 1.5 2001/12/14 20:01:15 dawes Exp $ */
+/* $XFree86: xc/programs/xauth/xauth.c,v 1.6 2003/07/09 15:27:37 tsi Exp $ */
#include "xauth.h"
@@ -40,6 +40,7 @@ char *ProgramName; /* argv[0], set at top of main() */
int verbose = -1; /* print certain messages */
Bool ignore_locks = False; /* for error recovery */
Bool break_locks = False; /* for error recovery */
+Bool no_name_lookups = False; /* show addresses instead of names */
/*
* local data
@@ -127,6 +128,9 @@ main(int argc, char *argv[])
case 'i': /* -i */
ignore_locks = True;
continue;
+ case 'n': /* -n */
+ no_name_lookups = True;
+ continue;
default:
usage ();
}