diff options
author | Pavel Tvrdik <pawel.tvrdik@gmail.cz> | 2014-12-03 10:10:34 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-02-21 19:31:36 +0100 |
commit | 4a591d4b947e0abc0ad013ca1b75da27c6922be5 (patch) | |
tree | 01327290a9810cc068429f81099dbc684bd8306f /proto/pipe | |
parent | 8ce9a87755372d7612375bb1a81a288f309746c8 (diff) |
Replacing GNU old-style field designator extension
Diffstat (limited to 'proto/pipe')
-rw-r--r-- | proto/pipe/pipe.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index 22381c3d..d6ef153a 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -336,16 +336,16 @@ pipe_show_proto_info(struct proto *P) struct protocol proto_pipe = { - name: "Pipe", - template: "pipe%d", - multitable: 1, - preference: DEF_PREF_PIPE, - postconfig: pipe_postconfig, - init: pipe_init, - start: pipe_start, - cleanup: pipe_cleanup, - reconfigure: pipe_reconfigure, - copy_config: pipe_copy_config, - get_status: pipe_get_status, - show_proto_info: pipe_show_proto_info + .name = "Pipe", + .template = "pipe%d", + .multitable = 1, + .preference = DEF_PREF_PIPE, + .postconfig = pipe_postconfig, + .init = pipe_init, + .start = pipe_start, + .cleanup = pipe_cleanup, + .reconfigure = pipe_reconfigure, + .copy_config = pipe_copy_config, + .get_status = pipe_get_status, + .show_proto_info = pipe_show_proto_info }; |