diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
commit | 08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 (patch) | |
tree | 0cfc4f0736babb895eb97a65c6defe632a0249c7 /net/ser/files/patch-parser__parse_hostport.c | |
parent | editors/fte: update to 20110708 (diff) |
Rename all patches that contain '::' as a path separator, and use
'__' instead.
Diffstat (limited to 'net/ser/files/patch-parser__parse_hostport.c')
-rw-r--r-- | net/ser/files/patch-parser__parse_hostport.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net/ser/files/patch-parser__parse_hostport.c b/net/ser/files/patch-parser__parse_hostport.c new file mode 100644 index 000000000000..b00d03bd6219 --- /dev/null +++ b/net/ser/files/patch-parser__parse_hostport.c @@ -0,0 +1,27 @@ + +$FreeBSD$ + +--- parser/parse_hostport.c.orig ++++ parser/parse_hostport.c +@@ -25,8 +25,6 @@ + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +-#ifdef _OBSOLETED +- + #include "parse_hostport.h" + #include <string.h> /* strlen */ + #include "../dprint.h" +@@ -43,7 +41,6 @@ + if (*tmp==0) { + *port=0; + } else { +- *tmp=0; + *port=str2s((unsigned char*)(tmp+1), strlen(tmp+1), &err); + if (err ){ + LOG(L_INFO, +@@ -56,4 +53,3 @@ + return host->s; + } + +-#endif |