First off, setting Scope to "subtree" is unnecessary when you already have the DN you are looking for.
Also, how about finding all objects whose "manager" property is the person you look for, then iterating them. This should generally be faster than the other way around.
(&(objectCategory=user)(manager=<user-dn-here>))