Changeset 9450 in ntrip for trunk/ntripserver/ntripserver.c


Ignore:
Timestamp:
Jun 4, 2021, 9:12:25 AM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ntripserver/ntripserver.c

    r9448 r9450  
    911911
    912912      if (connect(socket_tcp, (struct sockaddr*) &caster, sizeof(caster)) < 0) {
    913         fprintf(stderr, "WARNING: can't connect output to %s at port %d\n",
     913        fprintf(stderr, "WARNING: can't connect output to %s at port %d",
    914914            inet_ntoa(caster.sin_addr), outport);
     915        if (errno != EAGAIN) {perror(" ");} else {fprintf(stderr, "\n");}
    915916        break;
    916917      }
Note: See TracChangeset for help on using the changeset viewer.