summaryrefslogtreecommitdiff
path: root/socket-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-28 04:50:28 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-28 04:50:28 +0100
commit1c24e7bd1286d16a7125aeeee0470ea0685c8318 (patch)
treefbecbcfbbf2c2d6874e3148f98a7aa7d06c851ff /socket-util.c
parent35355baba1feec37bf9f22e3a0e18f495fcf6014 (diff)
Use @ instead = as abstract namespace socket prefix
@ makes more sense since the NUL addr contained in the sockaddr's sun_path field can also be written as ^@. Also, in the .socket files writing "ListenStream==foo" is kinda ugly. Finally, tools like strace decode it with an @ too.
Diffstat (limited to 'socket-util.c')
-rw-r--r--socket-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/socket-util.c b/socket-util.c
index 46a6e91bb..0282dd2f3 100644
--- a/socket-util.c
+++ b/socket-util.c
@@ -69,7 +69,7 @@ int socket_address_parse(SocketAddress *a, const char *s) {
memcpy(a->sockaddr.un.sun_path, s, l);
a->size = sizeof(sa_family_t) + l + 1;
- } else if (*s == '=') {
+ } else if (*s == '@') {
/* Abstract AF_UNIX socket */
size_t l;
@@ -261,7 +261,7 @@ int socket_address_print(const SocketAddress *a, char **p) {
if (!(ret = new(char, sizeof(a->sockaddr.un.sun_path)+1)))
return -ENOMEM;
- ret[0] = '=';
+ ret[0] = '@';
memcpy(ret+1, a->sockaddr.un.sun_path+1, sizeof(a->sockaddr.un.sun_path)-1);
ret[sizeof(a->sockaddr.un.sun_path)] = 0;