Changeset 775:713dae109380 in roaraudio


Ignore:
Timestamp:
09/07/08 16:33:09 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

typo

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/man1/roard.1

    r147 r775  
    1313.SH "DESCRIPTION" 
    1414 
    15 \fBroard\fR is the RoarAudio central demon. It mixes up diffrent audio streams from it's clients to send them 
     15\fBroard\fR is the RoarAudio central daemon. It mixes up diffrent audio streams from it's clients to send them 
    1616as a single stream to the soundcard. 
    1717 
     
    2424 
    2525.TP 
    26 \fB--demon\fR 
     26\fB--daemon\fR 
    2727Go into background after startup. 
    2828 
  • roard/roard.c

    r668 r775  
    3232 printf("Misc Options:\n\n"); 
    3333 printf( 
    34         " --demon               - Bring the server into background after init\n" 
     34        " --daemon              - Bring the server into background after init\n" 
    3535        " --terminate           - Terminate after last client quited\n" 
    3636        " --restart             - Trys to stop an old instance and start a new with new settings\n" 
     
    118118 char user_sock[80] = {0}; 
    119119 struct roar_audio_info sa; 
    120  int    demon    = 0; 
     120 int    daemon   = 0; 
    121121 int    realtime = 0; 
    122122 char * driver = getenv("ROAR_DRIVER"); 
     
    200200   } 
    201201 
    202   } else if ( strcmp(k, "--demon") == 0 ) { 
    203    demon = 1; 
     202  } else if ( strcmp(k, "--demon") == 0 || strcmp(k, "--daemon") == 0 ) { 
     203   daemon = 1; 
    204204  } else if ( strcmp(k, "--terminate") == 0 ) { 
    205205   g_terminate = 1; 
     
    432432 } 
    433433 
    434  strcpy(self->name, "RoarAudio demon internal"); 
    435  
    436  if ( demon ) { 
     434 strcpy(self->name, "RoarAudio daemon internal"); 
     435 
     436 if ( daemon ) { 
    437437  close(ROAR_STDIN ); 
    438438  close(ROAR_STDOUT); 
Note: See TracChangeset for help on using the changeset viewer.