From 59a01f4c3ce9c0e67e687521aec154304e14daa1 Mon Sep 17 00:00:00 2001 From: Rob Hoes Date: Wed, 26 Jan 2011 17:39:04 +0000 Subject: [PATCH] Function to check license expiry Signed-off-by: Rob Hoes --- ocaml/license/license.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocaml/license/license.ml b/ocaml/license/license.ml index 7811678c..078ac055 100644 --- a/ocaml/license/license.ml +++ b/ocaml/license/license.ml @@ -154,6 +154,6 @@ let license : license ref = ref (default ()) (* Calls to obtain info about license *) -let check_expiry l = true -(* Unix.time () < l.expiry *) +let check_expiry l = + Unix.time () < l.expiry -- 2.39.5