aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/socket.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/socket.c b/src/socket.c
index 5dbfa9e..fc01b8f 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -74,6 +74,10 @@ struct entry
*/
static struct entry entries[] = {
{
+ .prefix = "unix:",
+ .type = Type_Unix
+ },
+ {
.prefix = "tcp:",
.type = Type_Inet
},
@@ -82,10 +86,6 @@ static struct entry entries[] = {
.type = Type_Systemd,
.noreuseaddr = 1,
.nolisten = 1
- },
- {
- .prefix = "unix:",
- .type = Type_Unix
}
};