Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base64.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int Base64decode(char *bufplain, const char *bufcoded)
nprbytes -= 4;
}

/* Note: (nprbytes == 1) would be an error, so just ingore that case */
/* Note: (nprbytes == 1) would be an error, so just ignore that case */
if (nprbytes > 1) {
*(bufout++) =
(unsigned char) (pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4);
Expand Down