Changeset 41ca004 for ipc.c


Ignore:
Timestamp:
2006-05-19T07:55:53Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
68b518d6
Parents:
ac83732 (diff), 881fd4e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merging from main development tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipc.c

    rac83732 r41ca004  
    508508        }
    509509
    510         if (bind(serversock, &un_addr, sizeof(un_addr)) == -1) {
     510        if (bind(serversock, (struct sockaddr *)&un_addr, sizeof(un_addr)) == -1) {
    511511                log_message( LOGLVL_WARNING, "Unable to bind UNIX socket to %s: %s", IPCSOCKET, strerror(errno) );
    512512                return 0;
     
    566566        ipc_to_children_str( "OPERMSG :New BitlBee master process started (version " BITLBEE_VERSION ")\r\n" );
    567567       
     568        fclose( fp );
    568569        return 1;
    569570}
Note: See TracChangeset for help on using the changeset viewer.