Diff for /embedaddon/miniupnpd/testgetifaddr.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/05/29 12:55:57 version 1.1.1.3, 2013/07/22 00:32:35
Line 1 Line 1
 /* $Id$ */  /* $Id$ */
 /* MiniUPnP project  /* MiniUPnP project
  * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/   * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
 * (c) 2006-2011 Thomas Bernard  * (c) 2006-2011 Thomas Bernard
  * This software is subject to the conditions detailed   * This software is subject to the conditions detailed
  * in the LICENCE file provided within the distribution */   * in the LICENCE file provided within the distribution */
 #include <stdio.h>  #include <stdio.h>
 #include <syslog.h>  #include <syslog.h>
 #include "getifaddr.h"  #include "getifaddr.h"
   
   #if defined(__sun)
   /* solaris 10 does not define LOG_PERROR */
   #define LOG_PERROR 0
   #endif
   
 int main(int argc, char * * argv) {  int main(int argc, char * * argv) {
         char addr[64];          char addr[64];
         if(argc < 2) {          if(argc < 2) {
                 fprintf(stderr, "Usage:\t%s interface_name\n", argv[0]);                  fprintf(stderr, "Usage:\t%s interface_name\n", argv[0]);
                 return 1;                  return 1;
         }          }
   
         openlog("testgetifaddr", LOG_CONS|LOG_PERROR, LOG_USER);          openlog("testgetifaddr", LOG_CONS|LOG_PERROR, LOG_USER);
         if(getifaddr(argv[1], addr, sizeof(addr)) < 0) {          if(getifaddr(argv[1], addr, sizeof(addr)) < 0) {
                 fprintf(stderr, "Cannot get address for interface %s.\n", argv[1]);                  fprintf(stderr, "Cannot get address for interface %s.\n", argv[1]);

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>