cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/lib ChangeLog sunos57-select.c test-getdat...


From: Larry Jones
Subject: [Cvs-cvs] ccvs/lib ChangeLog sunos57-select.c test-getdat...
Date: Fri, 14 Nov 2008 19:43:19 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Larry Jones <scjones>   08/11/14 19:43:19

Modified files:
        lib            : ChangeLog sunos57-select.c test-getdate.sh 

Log message:
        * sunos57-select.c: Replace obsolete "xtime.h" with <sys/time.h>.
        * test-getdate.sh (valid_timezone): Fix incorrect return values.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/ChangeLog?cvsroot=cvs&r1=1.562&r2=1.563
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/sunos57-select.c?cvsroot=cvs&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/ccvs/lib/test-getdate.sh?cvsroot=cvs&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/ChangeLog,v
retrieving revision 1.562
retrieving revision 1.563
diff -u -b -r1.562 -r1.563
--- ChangeLog   16 Sep 2008 14:56:04 -0000      1.562
+++ ChangeLog   14 Nov 2008 19:43:19 -0000      1.563
@@ -1,3 +1,8 @@
+2008-11-14  Larry Jones  <address@hidden>
+
+       * sunos57-select.c: Replace obsolete "xtime.h" with <sys/time.h>.
+       * test-getdate.sh (valid_timezone): Fix incorrect return values.
+
 2008-09-16  Derek Price  <address@hidden>
 
        * lib/system.h: Remove signal detection.

Index: sunos57-select.c
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/sunos57-select.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- sunos57-select.c    4 Oct 2005 14:43:02 -0000       1.3
+++ sunos57-select.c    14 Nov 2008 19:43:19 -0000      1.4
@@ -38,11 +38,11 @@
 #include <stdbool.h>
 #include <stdio.h>
 #include <sys/types.h>
+#include <sys/time.h>
 #include <sys/stat.h>
 #include <unistd.h>
 
 #include "minmax.h"
-#include "xtime.h"
 
 static struct stat devnull;
 static int devnull_set = -1;

Index: test-getdate.sh
===================================================================
RCS file: /cvsroot/cvs/ccvs/lib/test-getdate.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- test-getdate.sh     15 Apr 2005 21:12:33 -0000      1.7
+++ test-getdate.sh     14 Nov 2008 19:43:19 -0000      1.8
@@ -113,9 +113,9 @@
        NTZ=`TZ=$1 date +%Z`
        if test "$NTZ" = "$UTZ" || test "$NTZ" = "$1"; then
                skipreason="$1 is not a recognized timezone on this system"
-               return `false`
+               return 1
        else
-               return `:`
+               return 0
        fi
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]