devkitPro / libctru

Homebrew development library for Nintendo 3DS/Horizon OS user mode (Arm11)
https://libctru.devkitpro.org/
754 stars 171 forks source link

Bug in HTTPC_AddRequestHeaderField function #92

Closed LunarCookies closed 9 years ago

LunarCookies commented 9 years ago

This line:

cmdbuf[6]=(l1<<4)|0xA;

Should be:

cmdbuf[6]=(l2<<4)|0xA;
archshift commented 9 years ago

Why not just create a pull request?

WinterMute commented 9 years ago

What happens if you try this without commit rights?

https://github.com/smealum/ctrulib/edit/master/libctru/source/services/httpc.c

fincs commented 9 years ago

GitHub will automatically perform a fork and a pull request for you when a person without commit access tries to edit a file.