aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-09-11 07:07:41 +0000
committerGuy Harris <guy@alum.mit.edu>1999-09-11 07:07:41 +0000
commitb32b29be35eb048a480836e7f12c6b5dae616cab (patch)
tree0b1a370ece39153c0d6d6e382c2832f51b874d77 /wiretap
parent0a4912e1d8f7484c70689884c3e5531a90201886 (diff)
"ascend_seek()" isn't used outside "ascend.c", so make it static to
"ascend.c". svn path=/trunk/; revision=659
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/ascend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/ascend.c b/wiretap/ascend.c
index 30ff9c2d87..3ff602e35f 100644
--- a/wiretap/ascend.c
+++ b/wiretap/ascend.c
@@ -1,6 +1,6 @@
/* ascend.c
*
- * $Id: ascend.c,v 1.2 1999/09/11 06:49:42 guy Exp $
+ * $Id: ascend.c,v 1.3 1999/09/11 07:07:41 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -78,7 +78,7 @@ static int ascend_read(wtap *wth, int *err);
byte offset. Returns 0 on failure. A valid offset is 0; since
that causes problems with wtap_loop, offsets are incremented by one. */
/* XXX - Handle I/O errors. */
-int ascend_seek(wtap *wth, int max_seek)
+static int ascend_seek(wtap *wth, int max_seek)
{
int byte, bytes_read = 0;
int x_level = 0, r_level = 0, e_level = 0;