- Timestamp:
- Dec 29, 2002, 9:09:35 AM (22 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 3969e3a
- Parents:
- 5c7b1b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
owl.c
rb45293f ra15a84f 36 36 char *configfile, *tty, *perlout, **argvsave, buff[LINE], startupmsg[LINE]; 37 37 owl_filter *f; 38 time_t nexttime; 38 time_t nexttime, now; 39 struct tm *today; 39 40 40 41 argcsave=argc; … … 223 224 owl_context_set_interactive(owl_global_get_context(&g)); 224 225 225 nexttimediff= 20;226 nexttimediff=10; 226 227 nexttime=time(NULL); 227 228 … … 241 242 242 243 /* little hack */ 243 if (0 && owl_global_get_runtime(&g)<300) { 244 now=time(NULL); 245 today=localtime(&now); 246 if (today->tm_mon==9 && today->tm_mday==31 && owl_global_get_runtime(&g)<600) { 244 247 if (time(NULL)>nexttime) { 245 248 if (nexttimediff==1) { 246 nexttimediff= 20;249 nexttimediff=10; 247 250 } else { 248 251 nexttimediff=1;
Note: See TracChangeset
for help on using the changeset viewer.