]> git.netwichtig.de Git - user/henk/code/exim.git/blobdiff - src/src/lookups/passwd.c
C99 initialisers
[user/henk/code/exim.git] / src / src / lookups / passwd.c
index 92c2ddac267ac7852d00e271ce1e9b1ff33cf10e..0a4a7b4e793e66f9e0258b23dd0020c55f6f4717 100644 (file)
@@ -70,15 +70,15 @@ fprintf(f, "Library version: passwd: Exim version %s\n", EXIM_VERSION_STR);
 }
 
 static lookup_info _lookup_info = {
-  US"passwd",                    /* lookup name */
-  lookup_querystyle,             /* query-style lookup */
-  passwd_open,                   /* open function */
-  NULL,                          /* no check function */
-  passwd_find,                   /* find function */
-  NULL,                          /* no close function */
-  NULL,                          /* no tidy function */
-  NULL,                          /* no quoting function */
-  passwd_version_report          /* version reporting */
+  .name = US"passwd",                  /* lookup name */
+  .type = lookup_querystyle,           /* query-style lookup */
+  .open = passwd_open,                 /* open function */
+  .check = NULL,                       /* no check function */
+  .find = passwd_find,                 /* find function */
+  .close = NULL,                       /* no close function */
+  .tidy = NULL,                                /* no tidy function */
+  .quote = NULL,                       /* no quoting function */
+  .version_report = passwd_version_report          /* version reporting */
 };
 
 #ifdef DYNLOOKUP