about summary refs log tree commit diff
path: root/other/pamexec.c
diff options
context:
space:
mode:
Diffstat (limited to 'other/pamexec.c')
-rw-r--r--other/pamexec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/other/pamexec.c b/other/pamexec.c
index 45fed4e3..c68cce0c 100644
--- a/other/pamexec.c
+++ b/other/pamexec.c
@@ -25,7 +25,7 @@
 #include "mallocvar.h"
 #include "pam.h"
 
-struct cmdlineInfo {
+struct CmdlineInfo {
     /* All the information the user supplied in the command line,
        in a form easy for the program to use.
     */
@@ -40,7 +40,7 @@ struct cmdlineInfo {
 
 static void
 parseCommandLine(int argc, const char ** argv,
-                 struct cmdlineInfo * const cmdlineP) {
+                 struct CmdlineInfo * const cmdlineP) {
 /*----------------------------------------------------------------------------
    Note that the pointers we place into *cmdlineP are sometimes to storage
    in the argv array.
@@ -157,7 +157,7 @@ doOneImage(FILE *        const ifP,
 int
 main(int argc, const char *argv[]) {
 
-    struct cmdlineInfo cmdline;
+    struct CmdlineInfo cmdline;
 
     FILE *       ifP;         /* Input file pointer */
     int          eof;         /* No more images in input */