X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audioc.c;h=6b1a64f978c9dadf38cd6cf46c4070e74f384510;hp=adcae715e28d29c48da934a16360dab8b5ecc476;hb=b307a25ed895caa33684302b502e9e0e70dc78b7;hpb=65a0002eb560b7248cbb0b4f143d00053b66bccc diff --git a/audioc.c b/audioc.c index adcae715..6b1a64f9 100644 --- a/audioc.c +++ b/audioc.c @@ -4,11 +4,10 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file audioc.c the client program used to connect to para_audiod */ +/** \file audioc.c The client program used to connect to para_audiod. */ #include #include -#include #include "audioc.cmdline.h" #include "para.h" @@ -28,7 +27,9 @@ INIT_STDERR_LOGGING(loglevel); static char *concat_args(unsigned argc, char * const *argv) { - int i; char *buf = NULL; + int i; + char *buf = NULL; + for (i = 0; i < argc; i++) { buf = para_strcat(buf, argv[i]); if (i != argc - 1) @@ -42,7 +43,6 @@ static char *configfile_exists(void) static char *config_file; struct stat statbuf; - if (!config_file) { char *home = para_homedir(); config_file = make_message("%s/.paraslash/audioc.conf", home); @@ -54,17 +54,17 @@ static char *configfile_exists(void) } /** - * the client program to connect to para_audiod + * The client program to connect to para_audiod. * - * \param argc usual argument count - * \param argv usual argument vector + * \param argc Usual argument count. + * \param argv Usual argument vector. * * It creates a temporary local socket in order to communicate with para_audiod. * Authentication consists in sending a ucred buffer that contains the user id. * * Any output received through the local socket is sent to stdout. * - * \return EXIT_SUCCESS or EXIT_FAILURE + * \return EXIT_SUCCESS or EXIT_FAILURE. * * \sa send_cred_buffer(), para_audioc(1), para_audiod(1). */