diff options
author | 2010-01-06 22:48:10 +0000 | |
---|---|---|
committer | 2010-01-06 22:48:10 +0000 | |
commit | 06c4d1f163a33bf72a2c30637d9909e2e1b878fa (patch) | |
tree | ba8c7d24e8a090660b91383fb735e8c0a0a210ed /paludis | |
parent | 1d0880145fec382d2cdd5ac896b2b02f58a8c1a9 (diff) | |
download | paludis-06c4d1f163a33bf72a2c30637d9909e2e1b878fa.tar.gz paludis-06c4d1f163a33bf72a2c30637d9909e2e1b878fa.tar.xz |
Don't ignore (things)
Diffstat (limited to 'paludis')
-rw-r--r-- | paludis/paludislike_options_conf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paludis/paludislike_options_conf.cc b/paludis/paludislike_options_conf.cc index d868df058..0c1ec2b5d 100644 --- a/paludis/paludislike_options_conf.cc +++ b/paludis/paludislike_options_conf.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2009 Ciaran McCreesh + * Copyright (c) 2009, 2010 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -292,7 +292,7 @@ PaludisLikeOptionsConf::add_file(const FSEntry & f) *t = t->substr(1, t->length() - 2); } - else if ('-' == t->at(0)) + if ('-' == t->at(0)) { /* -bar */ values_group->values().insert(make_named_values<Value>( |