diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/coopgammad.c (renamed from src/gammad.c) | 12 | ||||
| -rw-r--r-- | src/filter.c | 2 | ||||
| -rw-r--r-- | src/filter.h | 2 | ||||
| -rw-r--r-- | src/message.c | 2 | ||||
| -rw-r--r-- | src/message.h | 2 | ||||
| -rw-r--r-- | src/output.c | 2 | ||||
| -rw-r--r-- | src/output.h | 2 | ||||
| -rw-r--r-- | src/ramps.c | 2 | ||||
| -rw-r--r-- | src/ramps.h | 2 | ||||
| -rw-r--r-- | src/server.c | 2 | ||||
| -rw-r--r-- | src/server.h | 2 | ||||
| -rw-r--r-- | src/util.c | 2 | ||||
| -rw-r--r-- | src/util.h | 2 | 
13 files changed, 18 insertions, 18 deletions
| diff --git a/src/gammad.c b/src/coopgammad.c index fa24d82..26a9d05 100644 --- a/src/gammad.c +++ b/src/coopgammad.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify @@ -207,11 +207,11 @@ static char* get_pathname(const char* suffix)    if ((pw = getpwuid(getuid())))      username = pw->pw_name ? pw->pw_name : ""; -  n = sizeof("/.gammad/~/.") + 3 * sizeof(int); +  n = sizeof("/.coopgammad/~/.") + 3 * sizeof(int);    n += strlen(rundir) + strlen(username) + strlen(name) + strlen(suffix);    if (!(rc = malloc(n)))      goto fail; -  sprintf(rc, "%s/.gammad/~%s/%i%s%s%s", +  sprintf(rc, "%s/.coopgammad/~%s/%i%s%s%s",  	  rundir, username, site.method, name ? "." : "", name ? name : "", suffix);    return rc; @@ -325,7 +325,7 @@ static char* get_crtc_name(libgamma_crtc_information_t* info, libgamma_crtc_stat   *    * @param   pidfile  The PID file   * @param   token    An environment variable (including both key and value) - *                   that must exist in the process if it is a gammad process + *                   that must exist in the process if it is a coopgammad process   * @return           -1: An error occurred   *                    0: The service is already running   *                    1: The PID file is outdated @@ -431,10 +431,10 @@ static int create_pidfile(char* pidfile)    char* token;    /* Create token used to validate the service. */ -  token = malloc(sizeof("GAMMAD_PIDFILE_TOKEN=") + strlen(pidfile)); +  token = malloc(sizeof("COOPGAMMAD_PIDFILE_TOKEN=") + strlen(pidfile));    if (token == NULL)      return -1; -  sprintf(token, "GAMMAD_PIDFILE_TOKEN=%s", pidfile); +  sprintf(token, "COOPGAMMAD_PIDFILE_TOKEN=%s", pidfile);    if (putenv(token))      return -1; diff --git a/src/filter.c b/src/filter.c index 5fa91ef..54bb9ad 100644 --- a/src/filter.c +++ b/src/filter.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/filter.h b/src/filter.h index 9df24e1..8ffcc26 100644 --- a/src/filter.h +++ b/src/filter.h @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/message.c b/src/message.c index c0372bd..343a26b 100644 --- a/src/message.c +++ b/src/message.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/message.h b/src/message.h index 163d806..15ceaf7 100644 --- a/src/message.h +++ b/src/message.h @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/output.c b/src/output.c index 3cd7886..5e8e8b0 100644 --- a/src/output.c +++ b/src/output.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/output.h b/src/output.h index acd5f63..3c56de5 100644 --- a/src/output.h +++ b/src/output.h @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/ramps.c b/src/ramps.c index 32c7994..b7ad978 100644 --- a/src/ramps.c +++ b/src/ramps.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/ramps.h b/src/ramps.h index 799ad0a..8261a61 100644 --- a/src/ramps.h +++ b/src/ramps.h @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/server.c b/src/server.c index 843ad81..c79f325 100644 --- a/src/server.c +++ b/src/server.c @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify diff --git a/src/server.h b/src/server.h index fa5552d..1edcf0e 100644 --- a/src/server.h +++ b/src/server.h @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify @@ -1,5 +1,5 @@  /** - * gammad -- Cooperative gamma server + * coopgammad -- Cooperative gamma server   * Copyright (C) 2016  Mattias Andrée (maandree@kth.se)   *    * This library is free software: you can redistribute it and/or modify | 
