diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-11-05 19:48:17 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-11-05 19:48:17 +0000 |
| commit | 842a95cc236e53afbf5e516267246c3408e0779e (patch) | |
| tree | 8b89d29ae64536e49795ef9345d379e01ff05a95 /lib/libfetch/fetch.h | |
| parent | 8984b8ccf6cfdc00d97df98870e1eeabbee0b8f2 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch/fetch.h')
| -rw-r--r-- | lib/libfetch/fetch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libfetch/fetch.h b/lib/libfetch/fetch.h index 377edad2acc8..cc39e3670172 100644 --- a/lib/libfetch/fetch.h +++ b/lib/libfetch/fetch.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: fetch.h,v 1.3 1998/07/11 21:29:08 des Exp $ + * $Id: fetch.h,v 1.4 1998/08/17 09:30:19 des Exp $ */ #ifndef _FETCH_H_INCLUDED @@ -45,8 +45,8 @@ struct url_s { char user[URL_USERLEN+1]; char pwd[URL_PWDLEN+1]; char host[MAXHOSTNAMELEN+1]; - char *doc; - int port; + int port; + char doc[2]; }; typedef struct url_s url_t; |
