summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-18 16:17:15 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-08-18 16:17:15 -0400
commitc24539997a2ed96e089551e046afa0ef55cfacda (patch)
tree7142b582c57f5df7efeaa9f2c0492483e719e361 /src/common
parentaafbe55598e51d491cc8760cd992838e6202c473 (diff)
parentf4d2a81d7fa375af270b95da25acea8b0a0150e5 (diff)
Merge commit 'jrollins/master'
Diffstat (limited to 'src/common')
-rw-r--r--src/common2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common b/src/common
index 54ea9cb..9d7deb7 100644
--- a/src/common
+++ b/src/common
@@ -425,7 +425,7 @@ process_user_id() {
# if the user ID does matches...
if [ "$(echo "$uidfpr" | gpg_unescape)" = "$userID" ] ; then
# and the user ID validity is ok
- if [ "$validity" != 'u' -a "$validity" != 'f' ] ; then
+ if [ "$validity" = 'u' -o "$validity" = 'f' ] ; then
# mark user ID acceptable
uidOK=true
fi