[or-cvs] tell the user what time _they_ are too, when a cert is expi...

Roger Dingledine arma at seul.org
Thu Jul 22 23:06:30 UTC 2004


Update of /home/or/cvsroot/src/common
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/common

Modified Files:
	tortls.c 
Log Message:
tell the user what time _they_ are too, when a cert is expired


Index: tortls.c
===================================================================
RCS file: /home/or/cvsroot/src/common/tortls.c,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- tortls.c	22 Jul 2004 04:53:34 -0000	1.63
+++ tortls.c	22 Jul 2004 23:06:28 -0000	1.64
@@ -619,6 +619,8 @@
   BIO *bio = NULL;
   BUF_MEM *buf;
   char *s1=NULL, *s2=NULL;
+  char mytime[33];
+  time_t now = time(NULL);
 
   if (problem)
     log_fn(LOG_WARN,"Certificate %s: is your system clock set incorrectly?",
@@ -642,7 +644,9 @@
   BIO_get_mem_ptr(bio, &buf);
   s2 = tor_strndup(buf->data, buf->length);
 
-  log_fn(LOG_WARN, "   (certificate lifetime runs from %s through %s)",s1,s2);
+  strftime(mytime, 32, "%b %d %H:%M:%S %Y GMT", gmtime(&now));
+
+  log_fn(LOG_WARN, "(certificate lifetime runs from %s through %s. Your time is %s.)",s1,s2,mytime);
 
  end:
   if (bio)



More information about the tor-commits mailing list