From: Thomas Roessler Date: Fri, 23 Feb 2001 09:12:36 +0000 (+0000) Subject: Ports are unsigned short, not short. X-Git-Tag: mutt-1-3-16-rel~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7ec5889acf1bb76f6c005429cce858b1c94572e;p=mutt Ports are unsigned short, not short. --- diff --git a/url.h b/url.h index 27dd0e13..6d00c096 100644 --- a/url.h +++ b/url.h @@ -19,7 +19,7 @@ typedef struct ciss_url char *user; char *pass; char *host; - short port; + unsigned short port; char *path; } ciss_url_t;