Patch removes old stuff from class url. (Looks copied-and-pasted from
ParsedURL, or maybe vice versa.)
--
Glenn Maynard
Index: url.h
===================================================================
RCS file: /home/lav/cvsroot/lftp/src/url.h,v
retrieving revision 1.13
diff -u -r1.13 url.h
--- url.h 2002/07/31 14:40:03 1.13
+++ url.h 2002/08/01 22:22:37
@@ -56,20 +56,6 @@
class url
{
public:
- char *proto;
- char *user;
- char *pass;
- char *host;
- char *port;
- char *path;
-
- url(const char *u);
- url();
- ~url();
-
- void SetPath(const char *p,const char *q=URL_PATH_UNSAFE);
- char *Combine();
-
// encode unsafe chars as %XY
static char *encode_string(const char *,char *buf=0,const char *u=URL_UNSAFE);
// reverse; done in-place.