Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
a8063f76
Commit
a8063f76
authored
Oct 26, 2001
by
Niels Möller
Browse files
(xauth_lookup): Bugfix for ipv6 addresses.
Rev: src/xauth.c:1.7
parent
49b9f9bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/xauth.c
View file @
a8063f76
...
...
@@ -127,7 +127,7 @@ xauth_lookup(struct sockaddr *sa,
{
struct
sockaddr_in6
*
s
=
(
struct
sockaddr_in6
*
)
sa
;
address
=
(
char
*
)
s
->
sin6_addr
;
address
=
(
char
*
)
&
s
->
sin6_addr
;
address_length
=
16
;
family
=
0
;
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment