diff --git a/sm5/ataprint.c b/sm5/ataprint.c index 72d422b8646bb0a29f0bbe0d6786690cd52bb3fb..83748ac9e2c486b77a4781a5add6a2fb1bbc88e6 100644 --- a/sm5/ataprint.c +++ b/sm5/ataprint.c @@ -31,7 +31,7 @@ #include "smartctl.h" #include "extern.h" -const char *CVSid2="$Id: ataprint.c,v 1.52 2003/01/12 10:23:29 ballen4705 Exp $" +const char *CVSid2="$Id: ataprint.c,v 1.53 2003/01/12 10:30:53 ballen4705 Exp $" CVSID1 CVSID2 CVSID3 CVSID6; // for passing global control variables @@ -103,7 +103,7 @@ void ataPrintDriveInfo (struct hd_driveid *drive){ // print current time and date tval=time(NULL); - pout("Local Time: %s", ctime(&tval)); + pout("Local Time is: %s", ctime(&tval)); if (version>=3) return; diff --git a/sm5/ataprint.cpp b/sm5/ataprint.cpp index 02e0905c5a7667dfbca7ed06b0446f990288887d..f152a719536c26f8f29712f546939489f539849c 100644 --- a/sm5/ataprint.cpp +++ b/sm5/ataprint.cpp @@ -31,7 +31,7 @@ #include "smartctl.h" #include "extern.h" -const char *CVSid2="$Id: ataprint.cpp,v 1.52 2003/01/12 10:23:29 ballen4705 Exp $" +const char *CVSid2="$Id: ataprint.cpp,v 1.53 2003/01/12 10:30:53 ballen4705 Exp $" CVSID1 CVSID2 CVSID3 CVSID6; // for passing global control variables @@ -103,7 +103,7 @@ void ataPrintDriveInfo (struct hd_driveid *drive){ // print current time and date tval=time(NULL); - pout("Local Time: %s", ctime(&tval)); + pout("Local Time is: %s", ctime(&tval)); if (version>=3) return; diff --git a/sm5/scsiprint.c b/sm5/scsiprint.c index 6bbbd5c7cf9a312fb726485ab0894b0c37b7ecd0..6f1c92326098790720b827cb2853c329d84e3ab9 100644 --- a/sm5/scsiprint.c +++ b/sm5/scsiprint.c @@ -37,7 +37,7 @@ #define GBUF_SIZE 65535 -const char* CVSid4="$Id: scsiprint.c,v 1.17 2003/01/12 10:23:29 ballen4705 Exp $" +const char* CVSid4="$Id: scsiprint.c,v 1.18 2003/01/12 10:30:53 ballen4705 Exp $" CVSID3 CVSID4 CVSID5 CVSID6; // control block which points to external global control variables @@ -349,7 +349,7 @@ void scsiGetDriveInfo ( int device) // print current time and date tval=time(NULL); - printf("Local Time: %s", ctime(&tval)); + printf("Local Time is: %s", ctime(&tval)); if ( scsiSmartSupport( device, (UINT8 *) &smartsupport) != 0) { diff --git a/sm5/scsiprint.cpp b/sm5/scsiprint.cpp index 05b3715eab06405125b14daf5b0c7483ddd6fc37..f2f0e6bd92aaf380a104bac239bb45766aefd839 100644 --- a/sm5/scsiprint.cpp +++ b/sm5/scsiprint.cpp @@ -37,7 +37,7 @@ #define GBUF_SIZE 65535 -const char* CVSid4="$Id: scsiprint.cpp,v 1.17 2003/01/12 10:23:29 ballen4705 Exp $" +const char* CVSid4="$Id: scsiprint.cpp,v 1.18 2003/01/12 10:30:53 ballen4705 Exp $" CVSID3 CVSID4 CVSID5 CVSID6; // control block which points to external global control variables @@ -349,7 +349,7 @@ void scsiGetDriveInfo ( int device) // print current time and date tval=time(NULL); - printf("Local Time: %s", ctime(&tval)); + printf("Local Time is: %s", ctime(&tval)); if ( scsiSmartSupport( device, (UINT8 *) &smartsupport) != 0) {