summaryrefslogtreecommitdiff
path: root/lib/libstand/gzipfs.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-09-18 22:58:01 +0000
committerMike Smith <msmith@FreeBSD.org>1998-09-18 22:58:01 +0000
commit4ce36a791b0c673955d80c21d96aaffa571b16cf (patch)
tree9b841d1972ed33280817c708c6618668087a96ae /lib/libstand/gzipfs.c
parent0532933e608bb8c33b8f5c42e65c1153c9f46012 (diff)
Notes
Diffstat (limited to 'lib/libstand/gzipfs.c')
-rw-r--r--lib/libstand/gzipfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libstand/gzipfs.c b/lib/libstand/gzipfs.c
index 90589078d465..3a9730ba0286 100644
--- a/lib/libstand/gzipfs.c
+++ b/lib/libstand/gzipfs.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: zipfs.c,v 1.1.1.1 1998/08/20 08:19:55 msmith Exp $
*
*/
@@ -43,7 +43,7 @@ struct z_file
};
static int zf_fill(struct z_file *z);
-static int zf_open(char *path, struct open_file *f);
+static int zf_open(const char *path, struct open_file *f);
static int zf_close(struct open_file *f);
static int zf_read(struct open_file *f, void *buf, size_t size, size_t *resid);
static off_t zf_seek(struct open_file *f, off_t offset, int where);
@@ -157,7 +157,7 @@ check_header(struct z_file *zf)
}
static int
-zf_open(char *fname, struct open_file *f)
+zf_open(const char *fname, struct open_file *f)
{
static char *zfname;
int rawfd;