mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
3ffc4bda32
port is the database core & data entry app only. Reports will follow in a separate package, since they are updated more frequently. PR: 20585 Submitted by: Matthew Emmerton <root@gabby.gsicomp.on.ca>
20 lines
529 B
Plaintext
20 lines
529 B
Plaintext
*** interp/interp.c.orig Thu Aug 10 01:35:53 2000
|
|
--- interp/interp.c Thu Aug 10 01:35:42 2000
|
|
***************
|
|
*** 131,137 ****
|
|
if ((fp == NULL) || (ifile == NULL)) {
|
|
if(fp) fclose(fp);
|
|
llwprintf("Error: file \"%s\" not found.\n",
|
|
! (ifile ? ifile : ""));
|
|
return;
|
|
}
|
|
fclose(fp);
|
|
--- 131,137 ----
|
|
if ((fp == NULL) || (ifile == NULL)) {
|
|
if(fp) fclose(fp);
|
|
llwprintf("Error: file \"%s\" not found.\n",
|
|
! (ifile ? (char *)ifile : ""));
|
|
return;
|
|
}
|
|
fclose(fp);
|