2 Commits

Author SHA1 Message Date
agibert
023d30188c Add libnode-2.0.1-1 entry. 2001-11-28 13:57:51 +00:00
agibert
4f1b7a7ff7 Fix TIMAS_KO status in ND_ERROR() macro: TIMAS_KO is now an error. 2001-11-28 13:43:50 +00:00
2 changed files with 13 additions and 5 deletions

View File

@@ -1,13 +1,21 @@
# $RCSfile: ReleaseNotes.txt,v $
# $Revision: 2.2 $
# $Revision: 2.3 $
# $Name: $
# $Date: 2001/11/26 13:32:56 $
# $Date: 2001/11/28 13:57:51 $
# $Author: agibert $
--------------------------------------------------------------------------------
LibNode V 2.0.1-1 - A. Gibert - 28/11/01
--------------------------------------------------------------------------------
LibNode: Fix the error level of TIMAS_KO: it's now an error status.
--------------------------------------------------------------------------------
LibNode V 2.0.0-1 - A. Gibert - 26/11/01
--------------------------------------------------------------------------------

View File

@@ -1,9 +1,9 @@
/*---------------------------------------------------------------------------------*/
/* $RCSfile: node.h,v $ */
/*---------------------------------------------------------------------------------*/
/* $Revision: 2.0 $ */
/* $Revision: 2.1 $ */
/* $Name: $ */
/* $Date: 2001/11/26 10:54:13 $ */
/* $Date: 2001/11/28 13:43:50 $ */
/* $Author: agibert $ */
/*---------------------------------------------------------------------------------*/
@@ -159,7 +159,7 @@ typedef char *NDT_Version_Name;
typedef int NDT_Status;
#define ND_ERROR(s) ((s) < 0) /* Tous les codes retour négatifs correspondent à des erreurs */
#define ND_ERROR(s) ((s) <= 0) /* All negative or 0 status are errors */
#define NDS_OK 1
#define NDS_KO 0