]> granicus.if.org Git - fcron/commitdiff
Applied indentation with 'make indent'
authorThibault Godouet <fcron@free.fr>
Mon, 4 Feb 2013 19:37:42 +0000 (19:37 +0000)
committerThibault Godouet <fcron@free.fr>
Mon, 4 Feb 2013 19:37:42 +0000 (19:37 +0000)
fcron.c
fcrondyn.c
fcrontab.c
fileconf.c
filesubs.c
filesubs.h
job.c

diff --git a/fcron.c b/fcron.c
index ca913b82dd9521951c60ff83eda3363de2e94231..4db90871ec78420aeb11102394e621e161f5ac25 100644 (file)
--- a/fcron.c
+++ b/fcron.c
@@ -289,7 +289,7 @@ is_system_startup(void)
     if ((reboot = creat(REBOOT_LOCK, S_IRUSR & S_IWUSR)) < 0)
         error_e("Can't create lock for reboot jobs.");
     else
-       xclose_check(&reboot, REBOOT_LOCK);
+        xclose_check(&reboot, REBOOT_LOCK);
 
     /* run @reboot jobs */
     return 1;
index 1897045e431cca373e9e169a34185061e24e91e1..9356c60dffc9a1cce4a357c34f45acf9eabe2945 100644 (file)
@@ -692,7 +692,7 @@ interactive_mode(int fd)
         if (line_read && *line_read) {
             add_history(line_read);
         }
-#endif /* HAVE_READLINE_HISTORY */
+#endif                          /* HAVE_READLINE_HISTORY */
 
         free(line_read);
         if (return_code == QUIT_CMD || return_code == ERR) {
@@ -779,7 +779,7 @@ int
 main(int argc, char **argv)
 {
     int return_code = 0;
-    int fd = (-1); /* fd == -1 means connection to fcron is not currently open */
+    int fd = (-1);              /* fd == -1 means connection to fcron is not currently open */
     struct passwd *pass = NULL;
 
     rootuid = get_user_uid_safe(ROOTNAME);
index 3f6767e5dc659abcd6146fb1966dcdb689f05ebe..41931fc24043c1fd203edb70e4c49e9681c2fb2a 100644 (file)
@@ -432,7 +432,7 @@ edit_file(const char *fcron_orig)
             cureditor = editor;
 
     /* temp_file() dies on error, so tmp_str is always set */
-    file = temp_file(&tmp_str); 
+    file = temp_file(&tmp_str);
     if ((fi = fdopen(file, "w")) == NULL) {
         error_e("could not fdopen");
         goto exiterr;
index b1fbead39aac4df469b0bf82909cc21e4bf1f107..e0590356256ab9feb0ee8f491b8cdca305f2c277 100644 (file)
@@ -1346,14 +1346,14 @@ read_shortcut(char *ptr, cf_t * cf)
     /* The next char must be a space (no other option allowed when using
      * a shortcut: if the user wants to use options, they should use the 
      * native fcron lines */
-    if ( ! isspace((int) *ptr) ) {
+    if (!isspace((int)*ptr)) {
         fprintf(stderr, "%s:%d: No space after shortcut: skipping line.\n",
                 file_name, line);
         goto exiterr;
     }
 
     /* skip spaces before the username / shell command */
-    while (isspace((int) *ptr))
+    while (isspace((int)*ptr))
         ptr++;
 
     /* check for inline runas */
index 036c227016a4ff3029c0ed47e155db2e99acb77e..66b66c26bee8660ab1a1aab13a2ca18637fb94ca 100644 (file)
@@ -62,7 +62,7 @@ xclose_check(int *fd, const char *filedesc)
 /* fclose() a file, and set the FILE* to NULL.
  * Returns fclose()'s return value and leaves errno as is. */
 int
-xfclose(FILE **f)
+xfclose(FILE ** f)
 {
     int retval = EOF;
 
@@ -71,7 +71,7 @@ xfclose(FILE **f)
     }
 
     if (*f != NULL) {
-        retval = fclose (*f);
+        retval = fclose(*f);
         *f = NULL;
     }
 
@@ -82,7 +82,7 @@ xfclose(FILE **f)
  * Returns fclose()'s return value.
  * WARNING: do NOT call from log.c to avoid potential infinite loops! */
 int
-xfclose_check(FILE **f, const char *filedesc)
+xfclose_check(FILE ** f, const char *filedesc)
 {
     int retval = EOF;
 
@@ -91,7 +91,7 @@ xfclose_check(FILE **f, const char *filedesc)
     }
 
     if (*f != NULL) {
-        retval = fclose (*f);
+        retval = fclose(*f);
         if (retval != 0) {
             error_e("Error while fclosing %s", filedesc);
         }
@@ -100,4 +100,3 @@ xfclose_check(FILE **f, const char *filedesc)
 
     return retval;
 }
-
index 43e5615e4b3fec8cab067c96a8a6c29b3e380080..8472399b964f1840fb1d45e5dbca378bd41b42fc 100644 (file)
@@ -33,7 +33,7 @@
 
 int xclose(int *fd);
 int xclose_check(int *fd, const char *filedesc);
-int xfclose(FILE **f);
-int xfclose_check(FILE **f, const char *filedesc);
+int xfclose(FILE ** f);
+int xfclose_check(FILE ** f, const char *filedesc);
 
 #endif                          /* __FILESUBS_H__ */
diff --git a/job.c b/job.c
index 998da1271ff787ea1334bb66de5c0fccacffd152..0243d036e32c0510f3e855b00b3fdc530cfdfbe1 100644 (file)
--- a/job.c
+++ b/job.c
@@ -772,27 +772,26 @@ end_job(cl_t * line, int status, FILE * mailf, short mailpos,
     char *m = NULL;
 
 #ifdef USE_SENDMAIL
-    if (mailf != NULL
-            && (is_mailzerolength(line->cl_option)
-                || (is_mail(line->cl_option)
-                    && (
-                        /* job wrote some output and we wan't it in any case: */
-                        ((fseek(mailf, 0, SEEK_END) == 0
-                          && ftell(mailf) > mailpos)
-                         && !is_erroronlymail(line->cl_option))
-                        ||
-                        /* or we want an email only if the job returned an error: */
-                        !(WIFEXITED(status)
-                            && WEXITSTATUS(status) == 0)
-                       )
-                   )
-               )
+    if (mailf != NULL && (is_mailzerolength(line->cl_option)
+                          || (is_mail(line->cl_option)
+                              && (
+                                     /* job wrote some output and we wan't it in any case: */
+                                     ((fseek(mailf, 0, SEEK_END) == 0
+                                       && ftell(mailf) > mailpos)
+                                      && !is_erroronlymail(line->cl_option))
+                                     ||
+                                     /* or we want an email only if the job returned an error: */
+                                     !(WIFEXITED(status)
+                                       && WEXITSTATUS(status) == 0)
+                              )
+                          )
+        )
         ) {
         /* an output exit : we will mail it */
         mail_output = 1;
     }
     /* or else there is no output to email -- mail_output is already set to 0 */
-#endif /* USE_SENDMAIL */
+#endif                          /* USE_SENDMAIL */
 
     m = (mail_output == 1) ? " (mailing output)" : "";
     if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {