From 25ad71b1676bf9eb18f42bf29e2d77f32be6bb29 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 1 Dec 2000 00:10:44 +0000 Subject: [PATCH] fixed the date printout --- src/ca/casw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/casw.cpp b/src/ca/casw.cpp index 2d4361121..dcaeb9fc3 100644 --- a/src/ca/casw.cpp +++ b/src/ca/casw.cpp @@ -175,7 +175,7 @@ int main ( int argc, char **argv ) if ( netChange ) { char date[64]; osiTime current = osiTime::getCurrent (); - current.strftime ( date, sizeof ( date ), "%a %b %d %H:%M:%S %Y"); + current.strftime ( date, sizeof ( date ), "%a %b %d %Y %H:%M:%S"); char host[64]; ipAddrToA ( &ina, host, sizeof ( host ) ); printf ("CA server beacon anomaly: %s %s\n", date, host );