summaryrefslogtreecommitdiff
path: root/cprogs
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-03-29 23:47:42 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-03-29 23:47:42 +0100
commitfe6ea88298e3ae2c6ecf949528621ea2a1699764 (patch)
treee01c8c85e0425138df82ad28460878aa296d1fba /cprogs
parentc7d21d25f3ca85a49a4f6a6e32b35b618817af37 (diff)
cgi-fcgi-interp: Reformat option table (nfc)
Diffstat (limited to 'cprogs')
-rw-r--r--cprogs/cgi-fcgi-interp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cprogs/cgi-fcgi-interp.c b/cprogs/cgi-fcgi-interp.c
index 7a6323e..65532e6 100644
--- a/cprogs/cgi-fcgi-interp.c
+++ b/cprogs/cgi-fcgi-interp.c
@@ -188,11 +188,11 @@ static void ident_addstring(const struct cmdinfo *ci, const char *string) {
#define MAX_OPTS 5
static const struct cmdinfo cmdinfos[]= {
- { "help", 0, .call= of_help },
- { 0, 'g', 1, .sassignto= &ident },
- { 0, 'M', 1, .call=of_iassign, .iassignto= &numservers },
- { 0, 'D', 0, .iassignto= &debugmode, .arg= 1 },
- { 0, 'c', 1, .call=of_iassign, .iassignto= &check_interval },
+ { "help", 0, .call=of_help },
+ { 0, 'g', 1, .sassignto= &ident },
+ { 0, 'M', 1, .call=of_iassign, .iassignto= &numservers },
+ { 0, 'D', 0, .iassignto= &debugmode, .arg= 1 },
+ { 0, 'c', 1, .call=of_iassign, .iassignto= &check_interval },
{ 0 }
};