Changeset 2621:1055b438bce6 in roaraudio


Ignore:
Timestamp:
09/11/09 21:43:21 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

rename Player->Client

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roarclients/roarctl.c

    r2620 r2621  
    209209   continue; 
    210210  } 
    211   printf("Player name           : %s\n", c.name); 
    212   printf("Player PID            : %i(%s)\n", c.pid, proc_name(c.pid)); 
     211  printf("Client name           : %s\n", c.name); 
     212  printf("Client PID            : %i(%s)\n", c.pid, proc_name(c.pid)); 
    213213  if ( c.uid != -1 ) { 
    214214#ifdef _POSIX_USERS 
    215215   pwd = getpwuid(c.uid); 
    216216   grp = getgrgid(c.gid); 
    217    printf("Player UID/GID        : %i(%s)/%i(%s)\n", c.uid, pwd ? pwd->pw_name : "?", c.gid, grp ? grp->gr_name : "?"); 
     217   printf("Client UID/GID        : %i(%s)/%i(%s)\n", c.uid, pwd ? pwd->pw_name : "?", c.gid, grp ? grp->gr_name : "?"); 
    218218#else 
    219    printf("Player UID/GID        : %i/%i\n", c.uid, c.gid); 
     219   printf("Client UID/GID        : %i/%i\n", c.uid, c.gid); 
    220220#endif 
    221221  } 
    222222 
    223223  if ( g_verbose && c.proto != ROAR_PROTO_NONE ) { 
    224    printf("Player Protocol       : %s\n", roar_proto2str(c.proto)); 
     224   printf("Client Protocol       : %s\n", roar_proto2str(c.proto)); 
    225225  } 
    226226 
     
    243243    strcat(tmp, ")"); 
    244244 
    245    printf("Player Byteorder      : %s%s\n", roar_byteorder2str(c.byteorder), tmp); 
     245   printf("Client Byteorder      : %s%s\n", roar_byteorder2str(c.byteorder), tmp); 
    246246  } 
    247247 
Note: See TracChangeset for help on using the changeset viewer.