Index: /trunk/ippTools/src/p2searchPendingFrames.c
===================================================================
--- /trunk/ippTools/src/p2searchPendingFrames.c	(revision 6104)
+++ /trunk/ippTools/src/p2searchPendingFrames.c	(revision 6105)
@@ -16,14 +16,18 @@
 
     // in order to include these restrictions, we need to define these table columns
-    if (config->camera != NULL) {
-        psMetadataAddStr (where, PS_LIST_TAIL, "CAMERA", 0, "==", config->camera_name);
+    if (config->camera_name != NULL) {
+        psMetadataAddStr (where, PS_LIST_TAIL, "camera", 0, "==",
+            config->camera_name);
     }
     if (config->filter != NULL) {
-    psMetadataAddStr (where, PS_LIST_TAIL, "FILTER", 0, "==", config->filter);
+        psMetadataAddStr (where, PS_LIST_TAIL, "FILTER", 0, "==",
+            config->filter);
     }
+    /*
     if (!psTimeIsZero(config->start) && !psTimeIsZero(config->stop)) {
     psMetadataAddTime (where, PS_LIST_TAIL, "TIME_START", 0, "<", config->stop);
     psMetadataAddTime (where, PS_LIST_TAIL, "TIME_STOP", 0, ">", config->start);
     }
+    */
 
     psArray *exposures = p2PendingExpSelectRowObjects (config->database, where, MAX_ROWS);
