]> git.ipfire.org Git - thirdparty/fcron.git/commitdiff
*** empty log message ***
authorThibault Godouet <yo8192@users.noreply.github.com>
Fri, 2 Nov 2001 14:27:33 +0000 (14:27 +0000)
committerThibault Godouet <yo8192@users.noreply.github.com>
Fri, 2 Nov 2001 14:27:33 +0000 (14:27 +0000)
fcrontab.c

index 53900c8a56cb536db656478bcc7bb6bf1ff2e6b4..5a7396b8f56f5576a84975f4f30519fc0f699fed 100644 (file)
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcrontab.c,v 1.50 2001-11-02 13:38:15 thib Exp $ */
+ /* $Id: fcrontab.c,v 1.51 2001-11-02 14:27:33 thib Exp $ */
 
 /* 
  * The goal of this program is simple : giving a user interface to fcron
@@ -45,7 +45,7 @@
 #include "allow.h"
 #include "fileconf.h"
 
-char rcs_info[] = "$Id: fcrontab.c,v 1.50 2001-11-02 13:38:15 thib Exp $";
+char rcs_info[] = "$Id: fcrontab.c,v 1.51 2001-11-02 14:27:33 thib Exp $";
 
 void info(void);
 void usage(void);
@@ -92,7 +92,7 @@ int conv_pam(int num_msg, const struct pam_message **msgm,
             struct pam_response **response, void *appdata_ptr);
 pam_handle_t *pamh = NULL;
 const struct pam_conv apamconv = { conv_pam, NULL };
-#endif
+#endif /* HAVE_LIBPAM */
 
 void
 info(void)
@@ -780,7 +780,7 @@ failed_conversation:
 
     return PAM_CONV_ERR;
 }
-#endif
+#endif /* HAVE_LIBPAM */
 
 
 void
@@ -1091,8 +1091,6 @@ main(int argc, char **argv)
 
     }
 
-
-
     /* never reached */
     return EXIT_OK;
 }