diff options
author | Greg Hudson <ghudson@mit.edu> | 1999-10-15 00:59:55 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 1999-10-15 00:59:55 +0000 |
commit | 61e4ec586a1db8ccb3f6463b434cf704760571e6 (patch) | |
tree | c8bbd881a216b296c14b3a56d9e762413dffb235 /clients | |
parent | f13abb37ce4b1147cdac206ab56a2e6a53b0048e (diff) |
Don't error if the WG port is 65535.
Diffstat (limited to 'clients')
-rw-r--r-- | clients/znol/znol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/znol/znol.c b/clients/znol/znol.c index bd6ff98..804f63f 100644 --- a/clients/znol/znol.c +++ b/clients/znol/znol.c @@ -36,7 +36,7 @@ main(argc,argv) char *comment_ptr; int onoff = ON,quiet = 0,justlist = 0,useronly = 0, filenamed = 0; int retval,arg,ind,one,numlocs,i; - short wgport; + int wgport; if ((retval = ZInitialize()) != ZERR_NONE) { com_err(argv[0],retval,"initializing"); |