Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef r7e752b2  
    3535 */
    3636
    37 #include <async.h>
    3837#include <stdio.h>
    3938#include <str.h>
    4039#include <task.h>
    4140#include <time.h>
     41#include <ipc/ipc.h>
    4242#include <ipc/services.h>
    4343#include <str_error.h>
     
    340340            config.dest_str, config.size, config.size);
    341341       
    342         int icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT);
     342        int icmp_phone = icmp_connect_module(SERVICE_ICMP, ICMP_CONNECT_TIMEOUT);
    343343        if (icmp_phone < 0) {
    344344                fprintf(stderr, "%s: Unable to connect to ICMP service (%s)\n", NAME,
     
    355355                            str_error(ret));
    356356                       
    357                         async_hangup(icmp_phone);
     357                        ipc_hangup(icmp_phone);
    358358                        return ret;
    359359                }
     
    370370                            str_error(ret));
    371371                       
    372                         async_hangup(icmp_phone);
     372                        ipc_hangup(icmp_phone);
    373373                        return ret;
    374374                }
     
    390390        }
    391391       
    392         async_hangup(icmp_phone);
     392        ipc_hangup(icmp_phone);
    393393       
    394394        return 0;
Note: See TracChangeset for help on using the changeset viewer.