From: Zac Medico Date: Sat, 28 Jun 2008 22:14:25 +0000 (-0000) Subject: Bug #229859 - Also add atom validation to match(). X-Git-Tag: v2.2_rc2~288 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a25821b89360613830b5d46c156c0a94f0bf78f6;p=portage.git Bug #229859 - Also add atom validation to match(). svn path=/main/trunk/; revision=10837 --- diff --git a/bin/portageq b/bin/portageq index b7cd11869..5b7f5f72f 100755 --- a/bin/portageq +++ b/bin/portageq @@ -276,6 +276,10 @@ def match(argv): sys.exit(2) root, atom = argv if atom: + if atom_validate_strict and not portage.isvalidatom(atom): + portage.writemsg("ERROR: Invalid atom: '%s'\n" % atom, + noiselevel=-1) + return 2 results = portage.db[root]["vartree"].dbapi.match(atom) else: results = portage.db[root]["vartree"].dbapi.cpv_all()