Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
scorpio
external_rsync
Commits
be8bd99a
Commit
be8bd99a
authored
23 years ago
by
Martin Pool
Browse files
Options
Download
Email Patches
Plain Diff
check_name doesn't need a socklen_t, because it knows what is inside
each sockaddr type.
parent
355b8bcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
clientname.c
clientname.c
+1
-2
No files found.
clientname.c
View file @
be8bd99a
...
...
@@ -91,7 +91,7 @@ char *client_name(int fd)
client_sockaddr
(
fd
,
&
ss
,
&
ss_len
);
if
(
!
lookup_name
(
fd
,
&
ss
,
ss_len
,
name_buf
,
sizeof
name_buf
,
port_buf
,
sizeof
port_buf
))
check_name
(
fd
,
&
ss
,
ss_len
,
name_buf
,
port_buf
);
check_name
(
fd
,
&
ss
,
name_buf
,
port_buf
);
return
name_buf
;
}
...
...
@@ -229,7 +229,6 @@ int compare_addrinfo_sockaddr(const struct addrinfo *ai,
**/
int
check_name
(
int
fd
,
const
struct
sockaddr_storage
*
ss
,
socklen_t
ss_len
,
char
*
name_buf
,
const
char
*
port_buf
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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