Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/locsrv/locsrv.c

    rc1694b6b radb1ae9  
    4747#include <stdlib.h>
    4848#include <str.h>
    49 #include <str_error.h>
    5049#include <ipc/loc.h>
    5150#include <assert.h>
     
    13481347        categ_dir_add_cat(&cdir, cat);
    13491348
    1350         cat = category_new("console");
    1351         categ_dir_add_cat(&cdir, cat);
    1352 
    13531349        cat = category_new("clock");
    13541350        categ_dir_add_cat(&cdir, cat);
     
    15301526        int rc = async_create_port(INTERFACE_LOC_SUPPLIER,
    15311527            loc_connection_supplier, NULL, &port);
    1532         if (rc != EOK) {
    1533                 printf("%s: Error while creating supplier port: %s\n", NAME, str_error(rc));
     1528        if (rc != EOK)
    15341529                return rc;
    1535         }
    15361530       
    15371531        rc = async_create_port(INTERFACE_LOC_CONSUMER,
    15381532            loc_connection_consumer, NULL, &port);
    1539         if (rc != EOK) {
    1540                 printf("%s: Error while creating consumer port: %s\n", NAME, str_error(rc));
     1533        if (rc != EOK)
    15411534                return rc;
    1542         }
    15431535       
    15441536        /* Set a handler of incomming connections */
     
    15471539        /* Register location service at naming service */
    15481540        rc = service_register(SERVICE_LOC);
    1549         if (rc != EOK) {
    1550                 printf("%s: Error while registering service: %s\n", NAME, str_error(rc));
     1541        if (rc != EOK)
    15511542                return rc;
    1552         }
    15531543       
    15541544        printf("%s: Accepting connections\n", NAME);
Note: See TracChangeset for help on using the changeset viewer.