~ubuntu-branches/ubuntu/saucy/nut/saucy

« back to all changes in this revision

Viewing changes to server/user-data.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-07-20 19:48:50 UTC
  • mto: (16.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050720194850-oo61wjr33rrx2mre
Tags: upstream-2.0.2
ImportĀ upstreamĀ versionĀ 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
typedef struct {
21
21
        char    *aclname;
22
 
        void    *next;
 
22
        void    *next;
23
23
} acllist;
24
24
 
25
25
typedef struct {
26
26
        char    *cmd;
27
 
        void    *next;
 
27
        void    *next;
28
28
} instcmdlist;
29
29
 
30
30
typedef struct {
35
35
typedef struct {
36
36
        char    *username;
37
37
        acllist *firstacl;
38
 
        char    *password;
 
38
        char    *password;
39
39
        instcmdlist *firstcmd;
40
40
        actionlist  *firstaction;
41
 
        void    *next;
 
41
        void    *next;
42
42
} ulist_t;