summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Hagenbuch <chagenbu@php.net>2000-03-03 21:57:26 +0000
committerChuck Hagenbuch <chagenbu@php.net>2000-03-03 21:57:26 +0000
commit9ade07270686add05e20609214b12e9cc52f0bf5 (patch)
tree9cec3d37c8f0ff73fc4e3b68b1a479dbd4e65779
parent9dd0086785c766c6e60d4973cb14a60257b6c4c3 (diff)
downloadphp-git-9ade07270686add05e20609214b12e9cc52f0bf5.tar.gz
adding the fix for bug #3685 to php4 as well.
-rw-r--r--ext/imap/imap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c
index d93e3400c9..38a0edb8b1 100644
--- a/ext/imap/imap.c
+++ b/ext/imap/imap.c
@@ -2285,7 +2285,7 @@ PHP_FUNCTION(imap_utf7_decode)
case ST_DECODE0:
state++;
case ST_NORMAL:
- ;
+ break;
}
}
}
@@ -2342,7 +2342,7 @@ PHP_FUNCTION(imap_utf7_decode)
*outp++ |= UNB64(*inp);
state = ST_DECODE0;
case ST_NORMAL:
- ;
+ break;
}
}
}
@@ -2469,7 +2469,7 @@ PHP_FUNCTION(imap_utf7_encode)
*outp++ = B64(*inp++);
state = ST_ENCODE0;
case ST_NORMAL:
- ;
+ break;
}
}
}