projects
/
systemd
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b7e8b3
)
socket-util: use structured initialization
author
Lennart Poettering
<lennart@poettering.net>
Mon, 15 Oct 2018 11:55:00 +0000
(13:55 +0200)
committer
Lennart Poettering
<lennart@poettering.net>
Mon, 15 Oct 2018 17:35:00 +0000
(19:35 +0200)
src/basic/socket-util.c
patch
|
blob
|
history
diff --git
a/src/basic/socket-util.c
b/src/basic/socket-util.c
index df96aba970b957b8daa82d742454ef16aae7a1df..47c2de8b6d8d817cfe89d847a44aad4102d3439a 100644
(file)
--- a/
src/basic/socket-util.c
+++ b/
src/basic/socket-util.c
@@
-57,8
+57,9
@@
int socket_address_parse(SocketAddress *a, const char *s) {
assert(a);
assert(s);
- zero(*a);
- a->type = SOCK_STREAM;
+ *a = (SocketAddress) {
+ .type = SOCK_STREAM,
+ };
if (*s == '[') {
uint16_t port;