]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
removed bug in getCards function, mt
authorhadaq <hadaq>
Tue, 11 Apr 2006 17:37:27 +0000 (17:37 +0000)
committerhadaq <hadaq>
Tue, 11 Apr 2006 17:37:27 +0000 (17:37 +0000)
hadaq/hardware.h

index 645556a91ce822354b6f1ed71ffbb76a1acb5a7c..420a0dda6c4df26ef9292b4cdfafe19aeebe46ef 100644 (file)
@@ -34,18 +34,23 @@ static int getCards(Param *param, const char *subsystem, const char *cardtype, i
                int unit;
                int card;
 
+
                getCardsR = 0;
                card = 0;
+               /*= printf("units: %d\n", r); */
                for (unit = 0; unit < r; unit++) {
                        char ct[PARAM_MAX_VALUE_LEN];
-                       int r;
+                       int r2;
 
-                       if (Param_getString(param, units[unit], "cardtype", &r, ct) || r == 0) {
+                       /*printf("before getString: %s, unit %d\n", units[unit], unit);*/
+                       if (Param_getString(param, units[unit], "cardtype", &r2, ct) || r2 == 0) {
                                syslog(LOG_ERR, "Parameter %s(cardtype) not found", units[unit]);
                                getCardsR = -1;
                        } else {
+                           /*printf("before strcpy: %s: %s, unit %d\n", units[unit], ct, unit);*/
                                if (strcmp(cardtype, ct) == 0) {
                                        strcpy(cards[card++], units[unit]);
+                                       /*printf("strcpy: %s, unit %d\n", units[unit], unit);*/
                                }
                        }
                }