]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Sat, 11 Jun 2005 22:49:41 +0000 (22:49 +0000)
committerthib <thib>
Sat, 11 Jun 2005 22:49:41 +0000 (22:49 +0000)
configure.in
doc/en/changes.sgml
doc/en/todo.sgml
doc/fcron-doc.mod.in
socket.c

index 652d17a37e422e020197655c7c0c54194233eed9..338c3e2a6167c16ae03179fa805b6d52356f3ac6 100644 (file)
@@ -13,7 +13,7 @@ AC_PREFIX_DEFAULT($prefix)
 AC_CONFIG_HEADER(config.h)
 AC_PREREQ(2.57)
 
-vers="2.9.6"
+vers="2.9.7"
 vers_quoted="\"$vers\""
 AC_DEFINE_UNQUOTED(VERSION, $vers)
 AC_DEFINE_UNQUOTED(VERSION_QUOTED, $vers_quoted)
index ded3bbc3b7aef6bb3dca8625504e96c996aee3be..18be42cf43d9dae28054fe1c5a3865e92d2f99e8 100644 (file)
@@ -8,11 +8,27 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: changes.sgml,v 1.38 2005-03-12 12:41:29 thib Exp $ -->
+<!-- $Id: changes.sgml,v 1.39 2005-06-11 22:55:00 thib Exp $ -->
 
    <sect1 id="changes">
       <title>Changes</title>
 
+      <itemizedlist>
+        <title>From version 2.9.6 to 2.9.7</title>
+              <listitem>
+                 <para>Added time zone support (option timezone).</para>
+              </listitem>
+              <listitem>
+                 <para>Better support FreeBSD's users and groups modifications in fcron's install scripts.</para>
+              </listitem>
+        <listitem>
+           <para>Fixed a bug which used to make fcron send empty mails on very recent systems.</para>
+        </listitem>
+        <listitem>
+           <para>Added some casts in fileconf.c and save.c (to avoid some warnings when compiling on HP-UX).</para>
+        </listitem>
+      </itemizedlist>
+
       <itemizedlist>
         <title>From version 2.9.5.1 to 2.9.6</title>
         <listitem>
index d47a419ba59273654f897898089a6c347a72b23f..d2717d4e4afe3a80ad238dcd029a9e8efc79428d 100644 (file)
@@ -8,7 +8,7 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: todo.sgml,v 1.33 2005-03-12 13:59:40 thib Exp $ -->
+<!-- $Id: todo.sgml,v 1.34 2005-06-11 22:54:45 thib Exp $ -->
 
    <sect1 id="todo">
       <title>Todo</title>
@@ -24,12 +24,18 @@ A copy of the license is included in gfdl.sgml.
       <sect2>
         <title>High priority</title>
         <itemizedlist>
+           <listitem>
+              <para>test the fix for empty mails on non linux systems</para>
+           </listitem>
            <listitem>
               <para>NetBSD : bug from Gabor Z. Papp : fifo file created as fcron.fif instead of fcron.fifo ?</para>
            </listitem>
            <listitem>
               <para>bug fix : fcron freezes if the filesystem on which it operates has no space left ? (cannot reproduce it on my linux system)</para>
            </listitem>
+           <listitem>
+              <para>Add a FAQ entry to explain how to emulate an anacron entry (@volatile,first(xx) BIG-period /your/command</para>
+           </listitem>
         </itemizedlist>
       </sect2>
       <sect2>
@@ -73,6 +79,9 @@ A copy of the license is included in gfdl.sgml.
            <listitem>
               <para>use readline (if available) for fcrondyn.</para>
            </listitem>
+           <listitem>
+              <para>add a mailsubject option, for custom mail subjects (for instance, in case of a job containing something secret -- password, etc -- in the command line).</para>
+           </listitem>
         </itemizedlist>
       </sect2>
       <sect2>
index fa6e55e0a58baa5670c719655d6f7a5b67bef670..7ab3083fa64b90018eac80e11ea330ed997fd67e 100644 (file)
@@ -87,5 +87,7 @@
 <!ENTITY optserialonce '<link linkend="fcrontab.5.serialonce"><varname>serialonce</varname></link>'>
 <!ENTITY optstdout '<link linkend="fcrontab.5.stdout"><varname>stdout</varname></link>'>
 <!ENTITY optstrict '<link linkend="fcrontab.5.strict"><varname>strict</varname></link>'>
+<!ENTITY opttimezone '<link linkend="fcrontab.5.timezone"><varname>timezone</varname></link>'>
+<!ENTITY opttzdiff '<link linkend="fcrontab.5.tzdiff"><varname>tzdiff</varname></link>'>
 <!ENTITY optuntil '<link linkend="fcrontab.5.until"><varname>until</varname></link>'>
 <!ENTITY optvolatile '<link linkend="fcrontab.5.volatile"><varname>volatile</varname></link>'>
index 31a12727671dc4d9aa5c950ac31c7f814299eaeb..8868326b8ae82ed7d9cfdca296f78ca8cbb8ba35 100644 (file)
--- a/socket.c
+++ b/socket.c
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: socket.c,v 1.17 2004-09-02 22:07:18 thib Exp $ */
+ /* $Id: socket.c,v 1.18 2005-06-11 22:54:33 thib Exp $ */
 
 /* This file contains all fcron's code (server) to handle communication with fcrondyn */
 
@@ -119,7 +119,7 @@ init_socket(void)
     addr.sun_path[sizeof(addr.sun_path) -1 ] = '\0';
 
     unlink(fifofile);
-    if (bind(listen_fd, (struct sockaddr *) &addr,  sizeof(addr.sun_family)+len) != 0) {
+    if (bind(listen_fd, (struct sockaddr*) &addr, sizeof(addr.sun_family)+len+1) != 0){
        error_e("Cannot bind socket to '%s'", fifofile);
        goto err;
     }