~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to src/kadmin/cli/kadmin.c

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2009-05-13 14:09:31 UTC
  • mfrom: (13.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20090513140931-sv5wtfc7665p6q3i
Tags: 1.7dfsg~beta2-1
* New Upstream release including FAST support for DES and 3DES.
* Remove non-free content accidentally reintroduced in beta1, Closes: #528555
* Add strict dependency from libgssapi-krb5-2 to libkrb5-3 as discussed
  in #528514

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
{"needchange", 10,      KRB5_KDB_REQUIRES_PWCHANGE,     0},
72
72
{"allow_svr", 9,        KRB5_KDB_DISALLOW_SVR, 1},
73
73
{"password_changing_service",   25,     KRB5_KDB_PWCHANGE_SERVICE,      0 },
74
 
{"support_desmd5",      14,     KRB5_KDB_SUPPORT_DESMD5,        0 }
 
74
{"support_desmd5",      14,     KRB5_KDB_SUPPORT_DESMD5,        0 },
 
75
{"ok_as_delegate",      14,     KRB5_KDB_OK_AS_DELEGATE,        0 }
75
76
};
76
77
 
77
78
static char *prflags[] = {
91
92
    "PWCHANGE_SERVICE",         /* 0x00002000 */
92
93
    "SUPPORT_DESMD5",           /* 0x00004000 */
93
94
    "NEW_PRINC",                /* 0x00008000 */
 
95
    "UNKNOWN_0x00010000",       /* 0x00010000 */
 
96
    "UNKNOWN_0x00020000",       /* 0x00020000 */
 
97
    "UNKNOWN_0x00040000",       /* 0x00040000 */
 
98
    "UNKNOWN_0x00080000",       /* 0x00080000 */
 
99
    "OK_AS_DELEGATE",           /* 0x00100000 */
94
100
};
95
101
 
96
102
char *getenv();
1117
1123
            "\t\tallow_postdated allow_forwardable allow_tgs_req allow_renewable\n",
1118
1124
            "\t\tallow_proxiable allow_dup_skey allow_tix requires_preauth\n",
1119
1125
            "\t\trequires_hwauth needchange allow_svr password_changing_service\n"
 
1126
            "\t\tok_as_delegate\n"
1120
1127
            "\nwhere,\n\t[-x db_princ_args]* - any number of database specific arguments.\n"
1121
1128
            "\t\t\tLook at each database documentation for supported arguments\n");
1122
1129
}
1133
1140
            "\t\tallow_postdated allow_forwardable allow_tgs_req allow_renewable\n",
1134
1141
            "\t\tallow_proxiable allow_dup_skey allow_tix requires_preauth\n",
1135
1142
            "\t\trequires_hwauth needchange allow_svr password_changing_service\n"
 
1143
            "\t\tok_as_delegate\n"
1136
1144
            "\nwhere,\n\t[-x db_princ_args]* - any number of database specific arguments.\n"
1137
1145
            "\t\t\tLook at each database documentation for supported arguments\n"
1138
1146
        );