summaryrefslogtreecommitdiff
path: root/gettext-tools/misc/cvsuser.c
blob: 67e6ae39443195634f143aaa9301fc1ec3a54a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Enable a variable CVSUSER for cvs.  */
/* See cvs/subr.c: getcaller().  */

#include <stdlib.h>
#include <string.h>
#include <pwd.h>

int getuid (void)
{
  return 0;
}

char * getlogin (void)
{
  char *s;

  s = getenv ("CVSUSER");
  if (s && *s)
    return s;
  s = getenv ("USER");
  if (s && *s)
    return s;
  return NULL;
}

struct passwd * getpwnam (const char *name)
{
  static struct passwd pw;
  static char namebuf[100];

  pw.pw_name = strcpy (namebuf, name);
  pw.pw_passwd = "*";
  pw.pw_uid = 100;
  pw.pw_gid = 100;
  pw.pw_gecos = "";
  pw.pw_dir = "/";
  pw.pw_shell = "/bin/sh";

  return &pw;
}