aboutsummaryrefslogtreecommitdiff
path: root/liberty-proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'liberty-proto.c')
-rw-r--r--liberty-proto.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/liberty-proto.c b/liberty-proto.c
index 63ce214..7c884e9 100644
--- a/liberty-proto.c
+++ b/liberty-proto.c
@@ -1911,14 +1911,14 @@ mpd_client_connect_unix (struct mpd_client *self, const char *address,
// Expand tilde if needed
char *expanded = resolve_filename (address, xstrdup);
- struct sockaddr_un sun;
- sun.sun_family = AF_UNIX;
- strncpy (sun.sun_path, expanded, sizeof sun.sun_path);
- sun.sun_path[sizeof sun.sun_path - 1] = 0;
+ struct sockaddr_un sau;
+ sau.sun_family = AF_UNIX;
+ strncpy (sau.sun_path, expanded, sizeof sau.sun_path);
+ sau.sun_path[sizeof sau.sun_path - 1] = 0;
free (expanded);
- if (connect (fd, (struct sockaddr *) &sun, sizeof sun))
+ if (connect (fd, (struct sockaddr *) &sau, sizeof sau))
{
error_set (e, "%s: %s", "connect", strerror (errno));
xclose (fd);