chiark
/
gitweb
/
~mdw
/
disorder
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
lib/mime.c: Add a comment explaining the intentional `case' fall-through.
[disorder]
/
lib
/
mime.c
diff --git
a/lib/mime.c
b/lib/mime.c
index 00a3c7209377c5e7afa43c6da631a280af3dc936..99dac39b1d1d939abaa32ca2cb77f64575f75617 100644
(file)
--- a/
lib/mime.c
+++ b/
lib/mime.c
@@
-174,6
+174,7
@@
const char *mime_parse_word(const char *s, char **valuep,
case '\\':
if(!(c = *s++))
return 0;
+ /* else fall through ... */
default:
dynstr_append(value, c);
break;