]> granicus.if.org Git - fcron/commitdiff
bug fix : cmd_code is a long int (not a int)
authorthib <thib>
Sat, 26 Feb 2005 15:09:54 +0000 (15:09 +0000)
committerthib <thib>
Sat, 26 Feb 2005 15:09:54 +0000 (15:09 +0000)
fcrondyn.h

index 9134397713fdf74849d45c6024332595d3070406..91b14e994b90340c09a3120e7f157a45930d7dec 100644 (file)
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcrondyn.h,v 1.3 2003-12-25 22:42:35 thib Exp $ */
+ /* $Id: fcrondyn.h,v 1.4 2005-02-26 15:09:54 thib Exp $ */
 
 #ifndef __FCRONDYN_H__
 #define __FCRONDYN_H__
@@ -41,7 +41,7 @@ typedef struct cmd_list_ent {
     char *cmd_name;
     char *cmd_desc;
     int cmd_numopt;
-    int cmd_code;
+    long int cmd_code;
     int cmd_opt[MAX_NUM_OPT];
     int cmd_default[MAX_NUM_OPT];
 } cmd_list_ent;