summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2011-03-19 15:14:24 +0000
committerArthur de Jong <arthur@arthurdejong.org>2011-03-19 15:14:24 +0000
commitf4930b502a6ea404b0ab1d316584cf1d267e886b (patch)
treefb9e6835ee410d08e2fad49f1dd088f49b308c04 /common
parent2cc65e1588bbd61b47654043d497a9fe0ec1ccbb (diff)
small code improvements
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1400 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'common')
-rw-r--r--common/expr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/expr.c b/common/expr.c
index 36f3f3d..b5aaf5e 100644
--- a/common/expr.c
+++ b/common/expr.c
@@ -2,7 +2,7 @@
expr.c - limited shell-like expression parsing functions
This file is part of the nss-pam-ldapd library.
- Copyright (C) 2009, 2010 Arthur de Jong
+ Copyright (C) 2009, 2010, 2011 Arthur de Jong
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -221,6 +221,7 @@ SET *expr_vars(const char *str,SET *set)
break;
case '\\': /* escaped character, unescape */
i++;
+ /* no break needed here */
default: /* just skip */
i++;
}