~mterry/+junk/approver

« back to all changes in this revision

Viewing changes to approver/tests/libsystem.c

  • Committer: Michael Terry
  • Date: 2013-12-18 22:25:53 UTC
  • Revision ID: michael.terry@canonical.com-20131218222553-6k26eo4t2gmdu4gc
Test

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This file is part of telephony-service.
 
5
 *
 
6
 * telephony-service is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * telephony-service is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#include <pwd.h>
 
20
 
 
21
struct passwd *
 
22
getpwnam (const char *name)
 
23
{
 
24
    if (strcmp(name, "testuser") != 0)
 
25
        return 0;
 
26
 
 
27
    static struct passwd user_passwd = {0};
 
28
    user_passwd.pw_name = "testuser";
 
29
    user_passwd.pw_uid = 12345;
 
30
    user_passwd.pw_gid = 12345;
 
31
 
 
32
    return &user_passwd;
 
33
}