Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
hiredis
Commits
4b904296
Commit
4b904296
authored
Feb 20, 2019
by
Mark Nunberg
Browse files
Remove redundant line after rebase
parent
d9e0299f
Changes
1
Hide whitespace changes
Inline
Side-by-side
net.c
View file @
4b904296
...
...
@@ -502,7 +502,6 @@ int redisContextConnectUnix(redisContext *c, const char *path, const struct time
sa
=
(
struct
sockaddr_un
*
)(
c
->
saddr
=
malloc
(
sizeof
(
struct
sockaddr_un
)));
c
->
addrlen
=
sizeof
(
struct
sockaddr_un
);
sa
->
sun_family
=
AF_UNIX
;
c
->
addrlen
=
sizeof
(
*
sa
);
strncpy
(
sa
->
sun_path
,
path
,
sizeof
(
sa
->
sun_path
)
-
1
);
if
(
connect
(
c
->
fd
,
(
struct
sockaddr
*
)
sa
,
sizeof
(
*
sa
))
==
-
1
)
{
if
(
errno
==
EINPROGRESS
&&
!
blocking
)
{
...
...
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