From c8236e5a21c9ae56c9957f32e1e3cd44c357d94e Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Thu, 1 Nov 2001 18:40:45 +0000
Subject: [PATCH] Last export time now defaults to 1970 instead of now.

---
 xtrn/sbl/sbl2smb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xtrn/sbl/sbl2smb.c b/xtrn/sbl/sbl2smb.c
index 613a813b10..95ee182ba3 100644
--- a/xtrn/sbl/sbl2smb.c
+++ b/xtrn/sbl/sbl2smb.c
@@ -163,7 +163,7 @@ if(p) {
 		return(1); }
 	t=time(NULL);
 	if(read(file,&last,sizeof(time_t))!=sizeof(time_t))
-		last=t;
+		last=0;
 	lseek(file,0L,SEEK_SET);
 	write(file,&t,sizeof(time_t));
 	close(file); }
-- 
GitLab