~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): Arnaud Quette
  • Date: 2005-10-07 23:35:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051007233555-yreo209eww1bo665
Tags: 2.0.2-2
* debian/nut-cgi.postinst: load confmodule
* debian/nut-hidups/*: remove this unneeded directory
* debian/control:
  - Update build dependency from libsnmp5-dev to libsnmp9-dev (closes:
  #326410)
  - Changes nut-usb wrong dependency from libusb-dev to libusb-0.1-4 (closes:
  #320315)
  - add debconf (>= 0.5.00) and adduser to nut/nut-cgi Depends
* debian/copyright: update the FSF address and the Authors
* debian/po/vi.po: add the Vietnamese translation for debconf, from Clytie
  Siddall ((closes: #316327)

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;