Typo: rdfs -> rfds
authornorly <ny-git@enpas.org>
Fri, 22 Mar 2019 00:39:37 +0000 (01:39 +0100)
committernorly <ny-git@enpas.org>
Fri, 22 Mar 2019 00:39:37 +0000 (01:39 +0100)
tools/vag-bap-dump.c
tools/vag-bap-sniffer.c

index e9fb9bc2b15452bbb44eb11299a257bd502dcf11..085f29c99eb57e3eb94b113f868aacb64f056e01 100644 (file)
@@ -66,7 +66,7 @@ static int net_init(char *ifname)
 
 int main(int argc, char **argv)
 {
-       fd_set rdfs;
+       fd_set rfds;
        int s;
        int i;
        int can_id_count;
@@ -104,10 +104,10 @@ int main(int argc, char **argv)
        while (1) {
                int retval;
 
-               FD_ZERO(&rdfs);
-               FD_SET(s, &rdfs);
+               FD_ZERO(&rfds);
+               FD_SET(s, &rfds);
 
-               retval = select(s+1, &rdfs, NULL, NULL, NULL);
+               retval = select(s+1, &rfds, NULL, NULL, NULL);
                /* We currently rely on Linux timeout behavior here,
                 * i.e. the timeout now reflects the remaining time */
                if (retval < 0) {
@@ -115,7 +115,7 @@ int main(int argc, char **argv)
                        return 1;
                } else if (!retval) {
                        /* Timeout, we NEED to check this first */
-               } else if (FD_ISSET(s, &rdfs)) {
+               } else if (FD_ISSET(s, &rfds)) {
                        struct can_frame frame;
                        ssize_t ret;
 
index 65580f9dd98bb25ae52eff58c99fc40b26b91fc4..8355aeb27ae0e0ab0bb379fe72ed4ff65acf48df 100644 (file)
@@ -69,7 +69,7 @@ static int net_init(char *ifname)
 
 int main(int argc, char **argv)
 {
-       fd_set rdfs;
+       fd_set rfds;
        int s;
        unsigned can_id;
        struct BAP_RXer *bap;
@@ -102,10 +102,10 @@ int main(int argc, char **argv)
        while (1) {
                int retval;
 
-               FD_ZERO(&rdfs);
-               FD_SET(s, &rdfs);
+               FD_ZERO(&rfds);
+               FD_SET(s, &rfds);
 
-               retval = select(s+1, &rdfs, NULL, NULL, NULL);
+               retval = select(s+1, &rfds, NULL, NULL, NULL);
                /* We currently rely on Linux timeout behavior here,
                 * i.e. the timeout now reflects the remaining time */
                if (retval < 0) {
@@ -113,7 +113,7 @@ int main(int argc, char **argv)
                        return 1;
                } else if (!retval) {
                        /* Timeout, we NEED to check this first */
-               } else if (FD_ISSET(s, &rdfs)) {
+               } else if (FD_ISSET(s, &rfds)) {
                        struct can_frame frame;
                        ssize_t ret;