mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Oops. Missed this in the last commit.
Submitted by: Daniel C. Sobral <dcs@newsguy.com>
This commit is contained in:
parent
b406c0f55c
commit
ff834009ea
1 changed files with 1 additions and 3 deletions
|
|
@ -23,7 +23,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: pager.c,v 1.1.1.1 1998/08/20 08:19:55 msmith Exp $
|
||||
* $Id: pager.c,v 1.2 1998/09/18 22:58:00 msmith Exp $
|
||||
*/
|
||||
/*
|
||||
* Simple paged-output and paged-viewing functions
|
||||
|
|
@ -139,7 +139,6 @@ pager_file(const char *fname)
|
|||
return(-1);
|
||||
}
|
||||
|
||||
pager_open();
|
||||
for (;;) {
|
||||
hmuch = read(fd, buf, sizeof(buf) - 1);
|
||||
if (hmuch == -1) {
|
||||
|
|
@ -156,7 +155,6 @@ pager_file(const char *fname)
|
|||
break;
|
||||
}
|
||||
}
|
||||
pager_close();
|
||||
close(fd);
|
||||
return(result);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue