diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-11 21:13:22 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-05-11 21:13:22 +0000 |
commit | c63bb1f24528a5b20084d056c2bb48957f65ed70 (patch) | |
tree | 0c011176d73fb7146529b22adfb6f470aaa9f6a3 /net/wmlj | |
parent | 0002c7a75edd491ccd157eeff464466c50bdadea (diff) | |
download | ports-c63bb1f24528a5b20084d056c2bb48957f65ed70.tar.gz ports-c63bb1f24528a5b20084d056c2bb48957f65ed70.zip |
Notes
Diffstat (limited to 'net/wmlj')
-rw-r--r-- | net/wmlj/files/patch-src_network.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/wmlj/files/patch-src_network.c b/net/wmlj/files/patch-src_network.c new file mode 100644 index 000000000000..8e91ae9cbd33 --- /dev/null +++ b/net/wmlj/files/patch-src_network.c @@ -0,0 +1,24 @@ +--- src/network.c.orig 2016-05-11 21:04:11 UTC ++++ src/network.c +@@ -72,7 +72,7 @@ skipline(char *text) { + } + + static char* +-getline(char *text) { ++get_line(char *text) { + int len; + char *str; + +@@ -113,10 +113,10 @@ parse_response(char *buf) { + int read_keys = 0; + + while (*buf) { +- key = getline(buf); ++ key = get_line(buf); + buf = skipline(buf); + if (*buf) { +- val = getline(buf); ++ val = get_line(buf); + buf = skipline(buf); + + g_hash_table_insert(hash, g_strdup(key), g_strdup(val)); |