summaryrefslogtreecommitdiff
path: root/apt-pkg/tagfile.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:50:52 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:50:52 +0000
commit8e06abb2587d06891a84414f09f4910429451bf8 (patch)
treead21706900b938abce23ea8f04230e39c14e47b4 /apt-pkg/tagfile.h
parentad00ae81eb9e1f5384f8fe32879d483c72bbdace (diff)
Class File name change to FileFd
Author: jgg Date: 1998-07-19 04:42:10 GMT Class File name change to FileFd
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r--apt-pkg/tagfile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h
index 8e3dba33d..912558e8f 100644
--- a/apt-pkg/tagfile.h
+++ b/apt-pkg/tagfile.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: tagfile.h,v 1.6 1998/07/19 04:22:07 jgg Exp $
+// $Id: tagfile.h,v 1.7 1998/07/19 04:42:11 jgg Exp $
/* ######################################################################
Fast scanner for RFC-822 type header information
@@ -50,7 +50,7 @@ class pkgTagSection
class pkgTagFile
{
- File &Fd;
+ FileFd &Fd;
char *Buffer;
char *Start;
char *End;
@@ -66,7 +66,7 @@ class pkgTagFile
inline unsigned long Offset() {return iOffset;};
bool Jump(pkgTagSection &Tag,unsigned long Offset);
- pkgTagFile(File &F,unsigned long Size = 32*1024);
+ pkgTagFile(FileFd &F,unsigned long Size = 32*1024);
};
#endif