diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-04 22:27:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-04 22:27:37 +0000 |
commit | ee0a0fe8af3abb2339e7408ff88c7efeddda2dad (patch) | |
tree | 457327afc5e9273b02d985197f3ce90e16919a0d /utils | |
parent | a93196544c6b61c5de52329c4177b4254c85de4b (diff) |
2002-05-03 Roland McGrath <roland@frob.com>
* msgport.c (str2flags): Add break after default: label.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/msgport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/msgport.c b/utils/msgport.c index 23ffe369..06b7dc37 100644 --- a/utils/msgport.c +++ b/utils/msgport.c @@ -178,6 +178,7 @@ str2flags (const char *str) case 'a': flags |= O_APPEND; break; default: /* ignore */ + break; } ++str; } |