Changes in / [06e2209:a9db9b8] in mainline


Ignore:
Location:
uspace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/netecho/netecho.c

    r06e2209 ra9db9b8  
    173173                                } else if (str_lcmp(argv[index] + 2, "count=", 6) == 0) {
    174174                                        rc = arg_parse_int(argc, argv, &index, &count, 8);
    175                                         if (rc != EOK)
    176                                                 return rc;
    177175                                } else if (str_lcmp(argv[index] + 2, "family=", 7) == 0) {
    178176                                        rc = arg_parse_name_int(argc, argv, &index, &family, 9, socket_parse_protocol_family);
  • uspace/lib/c/generic/net/socket_client.c

    r06e2209 ra9db9b8  
    253253                        rc = dyn_fifo_push(&socket->accepted, 1,
    254254                            SOCKET_MAX_ACCEPTED_SIZE);
    255                         if (rc == EOK) {
     255                        if (rc != EOK) {
    256256                                // signal the accepted socket
    257257                                fibril_condvar_signal(&socket->accept_signal);
Note: See TracChangeset for help on using the changeset viewer.