]> granicus.if.org Git - shadow/blob - ChangeLog
Fix --non-unique's has_arg field to no_argument instead of required_argument.
[shadow] / ChangeLog
1 2008-02-19  Nicolas François  <nicolas.francois@centraliens.net>
2
3         * src/groupadd.c: Add missing 'p' to the getopt_long's optstring.
4         * src/groupadd.c: Fix --non-unique's has_arg field to no_argument
5         instead of required_argument.
6
7 2008-02-19  Nicolas François  <nicolas.francois@centraliens.net>
8
9         * NEWS, etc/login.defs: Set GID_MIN to the same value as UID_MIN
10         by default (1000).
11         * NEWS, etc/login.defs: Added variables SYS_UID_MIN (100),
12         SYS_UID_MAX (999), SYS_GID_MIN (100), SYS_GID_MAX (999) for system
13         accounts.
14         * libmisc/find_new_ids.c: Added support for system accounts in
15         find_new_uid() and find_new_gid().
16         * NEWS, src/newusers.c, src/useradd.c, src/groupadd.c: Added new
17         option -r, --system for system accounts in useradd, groupadd, and
18         newusers.
19
20 2008-02-18  Nicolas François  <nicolas.francois@centraliens.net>
21
22         * NEWS, src/groupmems.c: Fix buffer overflow when adding an user
23         to a group. Thanks to Peter Vrabec.
24
25 2008-02-14  Nicolas François  <nicolas.francois@centraliens.net>
26
27         * NEWS, etc/useradd: Change the default HOME directory in
28         /etc/default/useradd according FHS (/home instead of /home/users).
29         This fixes Alioth's bug #310559. Thanks to Dale E. Edmons.
30
31 2008-02-14  Nicolas François  <nicolas.francois@centraliens.net>
32
33         * NEWS, src/newgrp.c: Use the correct AUDIT_CHGRP_ID event instead of
34         AUDIT_USER_START, when changing the user space group ID with
35         newgrp or sg. Thanks to sgrubb@redhat.com for the patch.
36
37 2008-02-10  Nicolas François  <nicolas.francois@centraliens.net>
38
39         * src/usermod.c: Reset oflg with uflg if the new UID is equal to
40         the old one.
41         * src/usermod.c: Reset mflg with dflg if the new home directory is
42         the same as the old one.
43
44 2008-02-10  Nicolas François  <nicolas.francois@centraliens.net>
45
46         * NEWS, src/usermod.c: Fix the handling of -a when a user is being
47         renamed (with -l). The new name of the user was used for the new
48         supplementary groups, but not in the existing ones.
49
50 2008-02-10  Nicolas François  <nicolas.francois@centraliens.net>
51
52         * src/newusers.c: Set the shadow's password instead of the
53         passwd's password. Fix wrong cut&paste.
54
55 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
56
57         * src/usermod.c: Use a function to convert the dates from
58         /etc/shadow to human readable dates.
59         * src/usermod.c: Really log the expiration date change as human
60         readable strings instead of integers.
61         * src/usermod.c: No need to check audit_fd, audit_logger() will
62         take care of this.
63
64 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
65
66         * src/login.c: Do not translate the fromhost variable. It is
67         always used for syslog messages.
68
69 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
70
71         * NEWS, lib/defines.h: Switch to the C locale before sending
72         messages to syslog. The messages sent by shadow were not
73         translated, but error messages from PAM returned by pam_strerror()
74         were translated in the users's locale.
75
76 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
77
78         * NEWS: newusers will behave more like useradd.
79         * src/newusers.c: The user's ID must be found before the group ID
80         to mimic useradd's behavior choices of UID and GID.
81         * src/newusers.c: Reuse the generic find_new_uid() and
82         find_new_gid() functions. This permits to respect the
83         UID_MIN/UID_MAX and GID_MIN/GID_MAX variables, should 
84         * src/newusers.c: Check if the user or group exist using the
85         external databases (with the libc getpwnam/getgrnam functions).
86         Refuse to update an user which exist in an external database but
87         does not exist in the local database.
88         * src/newusers.c: Check the usernames and groupnames with
89         check_user_name() and check_group_name()
90         * src/newusers.c: Use isdigit() for readability.
91         * src/newusers.c: Check if numerical IDs are valid (no remaining
92         chars).
93
94 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
95
96         * NEWS, src/newusers.c: Fix the support for the NONE crypt method.
97
98 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
99
100         * src/newusers.c: Fix shadow group support (the list of admins was
101         not defined; it is now set to an empty list).
102
103 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
104
105         * NEWS, libmisc/salt.c: Do not seed the random number generator
106         each time, and use the time in microseconds to avoid having the
107         same salt for different passwords generated in the same second.
108         This permits to avoid using the same salt for different passwords
109         in newusers.
110
111 2008-02-03  Nicolas François  <nicolas.francois@centraliens.net>
112
113         * lib/pwio.c, lib/pwio.h: New function to find an user by
114         its UID on the local database.
115         * lib/groupio.c, lib/groupio.h: New function to find a group by
116         its GID on the local database.
117         * libmisc/find_new_ids.c, lib/prototypes.h: Add new generic
118         functions to find the next user or group ID available:
119         find_new_uid() and find_new_gid(). They work the same way as the
120         functions with the same name of useradd or groupadd, except that
121         they check in the local database to make sure an ID was not
122         reserved in an uncommitted change (this is needed to be used in
123         newusers), they report a status instead of calling exit(), and
124         they can receive a preferred ID. They should later support system
125         IDs. This should be a little bit slower, but not too much (if the
126         database is not open the checks against the local database will
127         exit immediately, and if it is already open, all the checks will be
128         done regarding the data in memory).
129         * po/POTFILES.in: The new libmisc/find_new_ids.c file contains
130         translatable strings.
131         * libmisc/Makefile.am: Add libmisc/find_new_ids.c to the sources
132         of the libmisc library.
133         * src/useradd.c, src/groupadd.c: Use the find_new_uid() and
134         find_new_gid() from the library instead of the local functions.
135
136 2008-02-02  Nicolas François  <nicolas.francois@centraliens.net>
137
138         * po/*.po: Updated PO files.
139         * libmisc/age.c, libmisc/yesno.c, src/lastlog.c, src/grpck.c,
140         src/chfn.c, src/passwd.c, src/chage.c, src/login.c, src/sulogin.c,
141         src/chsh.c: Fix call to puts (remove end of line, or use fputs).
142         * po/*.po: Unfuzzy PO files according to above change.
143
144 2008-01-26  Nicolas François  <nicolas.francois@centraliens.net>
145
146         Fix build failures with --disable-shadowgrp. Thanks to Jürgen
147         Daubert for the patch.
148         * libmisc/salt.c: Include <stdio.h>, needed for stderr and printf
149         functions.
150         * lib/encrypt.c: Include <stdio.h>, needed for perror, stderr and
151         printf functions
152         * src/usermod.c: sgr_locked exists only if SHADOWGRP is defined.
153         * src/chgpasswd.c: Only check is the gshadow file exists if
154         SHADOWGRP is defined.
155
156 2008-01-24  Nicolas François  <nicolas.francois@centraliens.net>
157
158         * src/gpasswd.c, src/chfn.c, src/chage.c, src/chsh.c, src/grpck.c,
159         src/vipw.c, src/pwck.c, src/sulogin.c, src/newgrp.c,
160         src/userdel.c, src/lastlog.c, src/groupmems.c, src/usermod.c,
161         src/expiry.c, src/groupdel.c, src/useradd.c, src/su.c,
162         src/groupmod.c, src/passwd.c, src/groupadd.c, src/login.c,
163         src/suauth.c, src/faillog.c, src/id.c, libmisc/limits.c,
164         libmisc/addgrps.c, libmisc/env.c, libmisc/age.c, libmisc/yesno.c,
165         lib/getdef.c: Replace printf by puts for fixed strings. This would
166         avoid issues caused by formats introduced in translated strings.
167
168 2008-01-23  Nicolas François  <nicolas.francois@centraliens.net>
169
170         * src/useradd.c: Strings improvement s/can't get unique/no more
171         available/.
172
173 2008-01-23  Nicolas François  <nicolas.francois@centraliens.net>
174
175         * NEWS, src/usermod.c: Check that the new fields set with -u, -s,
176         -l, -g, -f, -e, -d, and -c differ from the old ones. If a
177         requested new value is equal to the old one, no changes will
178         be performed for that field. If no fields are changed, usermod
179         will exist successfully with a warning. This avoids logging
180         changes to syslog when there are actually no changes.
181
182 2008-01-23  Nicolas François  <nicolas.francois@centraliens.net>
183
184         * src/usermod.c: Always define user_newcomment, user_newshell,
185         user_newexpire, and user_newinactive. It is more simple to always
186         have user_<x> as the old field, and user_new<x> as the new field
187         (even if the field did not change) instead of changing the
188         algorithm depending on WITH_AUDIT.
189
190 2008-01-23  Nicolas François  <nicolas.francois@centraliens.net>
191
192         * src/usermod.c: user_newname can only be used in WITH_AUDIT code
193         or when lflg is set. This issue was introduced in the code
194         refactoring of usermod.
195
196 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
197
198         * src/groupadd.c: Fix typo in comment: s/find_new_uid/find_new_gid/
199
200 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
201
202         * src/useradd.c: s/gid/GID/ in message string.
203         * src/useradd.c: Set this string for translation.
204
205 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
206
207         * man/grpck.8.xml: Fix typo. Remove "the" from "All entries in the
208         <filename></filename> are checked [...]"
209         * man/grpck.8.xml: Conditionally include the parts mentioning the
210         gshadow file (based on SHADOWGRP).
211         * man/grpck.8.xml: Add reference to the gshadow(5) manpage
212         (conditionally included).
213
214 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
215
216         * man/grpck.8.xml, man/pwck.8.xml: Indicate that the shadow
217         parameter is optional (i.e. a passwd file can be specified without
218         a shadow file, and the group file can be specified without the
219         gshadow file).
220
221 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
222
223         * man/grpck.8.xml: Document the options with a list of options,
224         as in the pwck(8) manpage.
225
226 2008-01-22  Nicolas François  <nicolas.francois@centraliens.net>
227
228         * NEWS, src/newgrp.c: Fix segfault when an user returns to an
229         unknown GID (either the user was deleted during the user's newgrp
230         session or the user's passwd entry referenced an invalid group).
231         Add a syslog warning in that case.
232         * src/newgrp.c: Add an end of line when reporting an invalid
233         password.
234
235 2008-01-12  Nicolas François  <nicolas.francois@centraliens.net>
236
237         * NEWS, src/useradd.c: Fix the handling of the --defaults option
238         (it required an argument, but should behave as -D)
239         * NEWS, man/useradd.8.xml: Document the --defaults option, which
240         was already described in the useradd's Usage information.
241
242 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
243
244         * src/passwd.c: Avoid setting the password to a const empty
245         string, but set the first char to \0. This avoids a warning.
246
247 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
248
249         * libmisc/salt.c: Add prototype for l64a(), gensalt(),
250         SHA_salt_size(), and SHA_salt_rounds().
251         * libmisc/salt.c: l64a() and gensalt() are static.
252         * libmisc/salt.c: The `meth' parameter of crypt_make_salt() is a
253         const. (ditto for the method variable).
254         * libmisc/salt.c: SHA_salt_rounds returns a const string.
255         * libmisc/salt.c: Avoid warnings with cast of random() to double.
256         * libmisc/salt.c: Replace rand() by random().
257
258 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
259
260         * lib/Makefile.am: Do not link libshadow.la with the intl, crypt,
261         skey and md libraries...
262         * src/Makefile.am: ...Specify for each binary which library is
263         required. skey and md are required for the binaries with
264         authentication of the user (chfn, chsh, login, passwd, su). intl
265         is required for all. mcrypt is required for user (chfn, chsh,
266         login, passwd, su, sulogin) and group (newgrp, gpasswd)
267         authentication and for the creation of passwords (chpasswd,
268         chgpasswd, gpasswd, newusers, passwd).
269
270 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
271
272         * lib/nscd.c, lib/nscd.h: Set the service parameter of
273         nscd_flush_cache() to const. This avoids a lot of warnings.
274         * lib/nscd.c: Include "nscd.h" to avoid inconsistent prototypes.
275
276 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
277
278         * lib/encrypt.c: Set the method string as a constant string.
279
280 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
281
282         * lib/port.c: Assume <errno.h> declares errno.
283
284 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
285
286         * man/po/fr.po: Fix typo: s/rend compte indiqué/rend le compte
287         indiqué/
288
289 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
290
291         * src/suauth.c: Remove prototype of check_su_auth(). It is
292         redundant with prototypes.h.
293         * src/suauth.c: isgrp() is static.
294
295 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
296
297         * libmisc/obscure.c: Tag the `old' parameter of palindrome(),
298         similar(), and simple() as unused.
299         * libmisc/loginprompt.c: Tag the `sig' parameter of login_exit()
300         as unused.
301         * src/expiry.c: Tag the `sig' parameter of catch_signals() as
302         unused.
303         * src/su.c: Tag the `sig' parameter of catch_signals() as unused.
304         * src/su.c: Add int parameter to the prototype of oldsig().
305         * src/login.c: Tag the `sig' parameter of alarm_handler() as
306         unused.
307         * src/sulogin.c: Tag the `sig' parameter of catch_signals() as
308         unused.
309         * libmisc/getdate.y: Tag the `string' parameter of yyerror() as
310         unused.
311         * libmisc/getdate.y: The string provided to yyerror() is const.
312         * libmisc/getdate.y: Fix the prototypes of yylex() and yyerror().
313
314 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
315
316         * lib/defines.h: Remove teh macro definition of SETXXENT_TYPE,
317         SETXXENT_RET, and SETXXENT_TEST. They were used by the now
318         removed pwent.c and grent.c.
319         * lib/defines.h: Remove the definition of PASSWD_PAG_FILE,
320         GROUP_PAG_FILE, SHADOW_PAG_FILE, and SGROUP_PAG_FILE. They are
321         never used.
322         * lib/defines.h: Don't include "snprintf.h". The file does not
323         exist in shadow.
324         * lib/defines.h: Add new macro unused to tag unused parameters.
325
326 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
327
328         * src/useradd.c, src/groupmems.c: Assume optarg and optind are
329         declared in <getopt.h>.
330
331 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
332
333         * src/usermod.c: Remove the pw_name argument of new_pw_passwd. Use
334         the user_newname global variable instead. This avoid using a
335         parameter with the same name as a function.
336
337 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
338
339         * src/newgrp.c: Removed unused gid parameter of syslog_sg().
340         * src/newgrp.c: The loginname and tty buffers are never changed.
341         Add the const qualifier.
342
343 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
344
345         * src/chpasswd.c, src/chgpasswd.c: The crypt_method string always
346         points to a constant string. Add the const qualifier.
347
348 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
349
350         * src/pwunconv.c: Remove prototype of l64a() (not used in
351         pwunconv).
352
353 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
354
355         * src/login_nopam.c: Use an ANSI prototype for resolve_hostname()
356         instead of K&R prototype.
357         * src/login_nopam.c: Fix the prototypes of list_match(),
358         user_match(), from_match(), string_match(). There were no
359         parameters in the prototypes.
360         * src/login_nopam.c: Fix the prototypes of the function parameter
361         match_fn of list_match().
362
363 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
364
365         * libmisc/copydir.c: Remove the src parameter of copy_special().
366         The entry's information are taken from the stat structure.
367
368 2008-01-06  Nicolas François  <nicolas.francois@centraliens.net>
369
370         * libmisc/console.c, libmisc/ulimit.c, lib/sgetgrent.c,
371         lib/sgetpwent.c: Include "prototypes.h" to make
372         sure the exported prototypes are the ones used for the definition
373         of functions.
374         * lib/prototypes.h: Added prototypes for __gr_del_entry(),
375         __gr_get_db(), __gr_get_head(), __gr_set_changed(), __gr_dup(),
376         __pw_del_entry(), __pw_get_db(), __pw_get_head(), __pw_dup(),
377         sgetgrent(), sgetpwent(), __sgr_del_entry(), __sgr_dup(),
378         __sgr_get_head(), __sgr_set_changed(), __spw_get_head(),
379         __spw_del_entry(), __spw_dup().
380         * lib/prototypes.h: Removed prototype for is_listed().
381         * lib/prototypes.h: Added name of the check_su_auth()'s parameters.
382         * lib/groupio.h: Removed prototypes for __gr_dup() and
383         __gr_set_changed().
384         * lib/sgroupio.c: Removed prototypes for putsgent(), sgetsgent(),
385         and __gr_get_db().
386         * lib/sgroupio.h: Removed prototypes for __sgr_dup() and
387         __sgr_set_changed().
388         * lib/shadowio.c: Removed prototype for __pw_get_db().
389         * lib/pwio.c: Removed prototype for sgetpwent() and putpwent().
390         * lib/shadowio.h: Removed prototypes for __spw_dup() and
391         __spw_set_changed().
392         * lib/pwio.h: Removed prototypes for __pw_dup() and
393         __pw_set_changed().
394         * lib/commonio.h: Add protection against multiple inclusions.
395         * lib/prototypes.h: Include commonio.h (needed for the
396         __xx_del_entry() functions).
397         * src/grpck.c: Remove prototypes for __gr_del_entry(),
398         __gr_get_head(), __sgr_del_entry(), and __sgr_get_head().
399         * src/pwck.c: Remove prototypes for __pw_del_entry(),
400         __pw_get_head(), __spw_del_entry(), and __spw_get_head().
401         * lib/groupio.c: Remove prototype for sgetgrent().
402         * lib/groupio.c: Add the name of the parameters for
403         merge_group_entries() and split_groups().
404         * lib/groupio.h: Remove prototypes for __gr_dup() and
405         __gr_set_changed().
406
407 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
408
409         * man/groupadd.8.xml, man/groupmod.8.xml: Add documentation for
410         the new --password options.
411
412 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
413
414         * src/useradd.c: Fix find_new_gid() prototype. Add a void
415         parameter.
416
417 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
418
419         * lib/prototypes.h: Add the dolastlog() prototype.
420         * lib/prototypes.h: Typo: login.c -> loginprompt.c
421         * src/login.c: Remove declaration of dolastlog().
422         * lib/prototypes.h: Include <lastlog.h> for the declaration of
423         struct lastlog.
424         * lib/prototypes.h: Remove old comments in the header.
425
426 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
427
428         * libmisc/pwdcheck.c: Do not include <pwd.h>. Include <shadow.h>
429         and "pwauth.h" only when compiled without PAM support.
430         * src/chfn.c, src/chsh.c: Do not include <shadow.h>
431         * lib/commonio.c: Do not include <shadow.h>. Do not include
432         <pwd.h>. Include "nscd.h" instead of <nscd.h>.
433
434 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
435
436         * configure.in: Do not check if shadow.h exist, but make sure it
437         exists.
438         * libmisc/pwdcheck.c, src/chfn.c, src/chsh.c, lib/defines.h,
439         lib/shadowmem.c, lib/shadowio.c, lib/commonio.c:
440         HAVE_SHADOW_H is no more needed (shadow.h should always exist).
441
442 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
443
444         * lib/groupio.c: Remove prototype of putgrent(), add parameter's
445         name of sgetgrent().
446         * lib/prototypes.h: Fix the do_pam_passwd() prototype (it returns
447         void).
448
449 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
450
451         * NEWS, src/groupmod.c, src/groupadd.c: Add option --password to
452         groupadd and groupmod (similar to useradd and usermod).
453
454 2008-01-05  Nicolas François  <nicolas.francois@centraliens.net>
455
456         * lib/prototypes.h: grent.c does not exist anymore. Remove the
457         putgrent prototype.
458         * lib/prototypes.h: "shadowio.h" was included for the definition
459         of the spwd structure. Replace this include by <shadow.h>
460         * libmisc/xmalloc.c, libmisc/utmp.c, libmisc/strtoday.c,
461         libmisc/pwd_init.c, libmisc/tz.c, lib/port.c, lib/fputsx.c,
462         libmisc/pam_pass.c, libmisc/log.c: Include "prototypes.h" to make
463         sure the exported prototypes are the ones used for the definition
464         of functions.
465         * libmisc/console.c: Define is_listed() as static and add its
466         prototype.
467         * libmisc/xgetXXbyYY.c, libmisc/yesno.c: Include config.h as a
468         system include, as recommended by the autoconf documentation.
469         * src/chage.c: Define isnum() as static and add its prototype.
470         * libmisc/xgetspnam.c: Add missing include "shadowio.h". (This was
471         OK as long as prototypes.h included this file.)
472         * src/nologin.c: Make a proper prototype for the main() function
473         declaration. (add void)
474         * src/login.c: login_prompt is the name of a function, use
475         loginprompt for the internal variable.
476         * src/chsh.c: loginsh is a global variable, use newshell for the
477         update_shell()'s parameter.
478         * lib/gshadow.c: The prototypes of fgetsx() and fputsx() are
479         already defined in prototypes.h. Remove the declaration of these
480         functions.
481         * lib/gshdow.c: list() is an external function. DO not shadow it
482         with a static function. The internal list() was renamed
483         build_list().
484         * lib/commonio.c: stat shadows another stat variable. Remove this
485         variable, and directly check the result of getfscreatecon().
486         * libmisc/utmp.c: Remove the declaration of getutent(),
487         getutline(), setutent(), and endutent() which are declared in
488         <utmp.h>
489
490 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
491
492         * src/newgrp.c: Remove duplicate logging to syslog.
493
494 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
495
496         * src/newgrp.c: Avoid assignments in conditionals.
497         * src/newgrp.c: Split check_perms(), syslog_sg() out of main().
498
499 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
500
501         * lib/shadow.c: Avoid assignments in conditionals.
502
503 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
504
505         * lib/groupio.c (split_groups): Test the pointer returned by malloc.
506
507 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
508
509         * lib/commonio.c: Document add_one_entry_nis(), write_all(),
510         commonio_remove(), commonio_locate(), and commonio_rewind().
511
512 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
513
514         * src/pwck.c: Avoid implicit brackets.
515         * src/pwck.c: Avoid implicit conversions to booleans.
516
517 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
518
519         * src/grpck.c: Avoid implicit brackets.
520         * src/grpck.c: Avoid implicit conversions to booleans.
521
522 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
523
524         * NEWS: No functional changes were introduced by the previous pwck
525         and grpck changes, except for the following bug fix: no syslog
526         logging if a passwd or group file was specified on the command
527         line without a shadowed database file, even if the system shadowed
528         database was changed).
529
530 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
531
532         * src/pwck.c: Fix typos in comments (gshadow/shadow).
533
534 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
535
536         * src/pwck.c: Split process_flags(), open_files(), close_files()
537         check_pw_file(), and check_spw_file() out of main(). New global
538         variables is_shadow, sort_mode, use_system_pw_file, and
539         use_system_spw_file.
540
541 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
542
543         * libmisc/xgetXXbyYY.c: De-comment code (duplicate the entry when
544         the _R function is not present on the system).
545
546 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
547
548         * src/lastlog.c: Remove statbuf, not used.
549         * src/lastlog.c: Fix types, cast umin and umax to uid_t.
550         * src/lastlog.c: (option -u) user needs to be a signed long, not
551         uid_t (to accept rangees like -<uid>
552
553 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
554
555         * src/useradd.c: Avoid ?: construct without the middle term.
556
557 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
558
559         * libmisc/copydir.c, src/usermod.c, lib/prototypes.h: The uid and
560         gid parameters can be set to -1 to indicate that the original
561         owners must be kept. Change the types from uid_t/gid_t to a
562         long int (signed).
563         * libmisc/copydir.c: Change the copy_entry(), copy_dir(),
564         copy_symlink(), copy_special(), and copy_file() prototypes
565         accordingly.
566         * lib/prototypes.h: Add the parameters' name for the
567         libmisc/copydir.c functions.
568
569 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
570
571         * libmisc/limits.c, libmisc/obscure.c, src/login_nopam.c,
572         lib/pwauth.c: Avoid empty file when USE_PAM is set.
573         * libmisc/audit_help.c: Avoid empty file when WITH_AUDIT is not set.
574         * src/login_nopam.c: Fix warnings: resolve_hostname takes and
575         returns a constant string.
576
577 2008-01-01  Nicolas François  <nicolas.francois@centraliens.net>
578
579         * src/grpck.c: Split process_flags(), open_files(), and
580         close_files() out of main(). New global variables is_shadow,
581         sort_mode, use_system_grp_file, and use_system_sgr_file.
582         * src/grpck.c: Split check_grp_file() and check_sgr_file() out of
583         main().
584         * src/grpck.c: Split check_members() and compare_members_lists()
585         out of check_grp_file() and check_sgr_file().
586
587 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
588
589         * man/po/Makefile.in.in: If remove-potcdate.sin does not exist,
590         use the one from teh po directory (it is not installed
591         automatically by autopoint.
592
593 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
594
595         * lib/commonio.h: Fix the type of the bitfields in the commonio_entry
596         and commonio_db structures to unsigned int (instead of int).
597
598 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
599
600         * src/chsh.c: Split process_flags(), check_perms(), and update_shell()
601         out of main().
602         * src/chsh.c: Before pam_end(), the return value of the previous
603         pam API was already checked. No need to validate it again.
604         * src/chsh.c: Avoid implicit brackets.
605         * src/chsh.c: Avoid assignments in comparisons.
606
607 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
608
609         * src/chfn.c: New function: process_flags() split out of main().
610         The flags variables are now global.
611         * src/chfn.c: New functions: check_perms(), update_gecos(),
612         get_old_fields(), and check_fields() split out of main().
613         * src/chfn.c: Before pam_end(), the return value of the previous
614         pam API was already checked. No need to validate it again.
615         * src/chfn.c: Avoid implicit brackets.
616         * src/chfn.c: Document may_change_field().
617         * src/chfn.c: Avoid implicit conversions to booleans.
618         * src/chfn.c: Avoid assignments in comparisons.
619
620 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
621
622         * src/newusers.c: Compilation fix for PAM support (pamh needs to be
623         global since the function split).
624         * src/chpasswd.c: Likewise.
625         * src/chgpasswd.c: Likewise.
626         * src/chpasswd.c: Avoid implicit conversions to booleans.
627
628 2007-12-31  Nicolas François  <nicolas.francois@centraliens.net>
629
630         * src/chage.c: Fix typo: s/maximim/maximum/
631         * src/chage.c: New function: fail_exit(). Change most of the exit()
632         to a fail_exit, which makes sure the files are unlocked (new global
633         variables: pw_locked, spw_locked), the PAM transaction is ended, and
634         the failure is logged to libaudit (use a global user_name and user_uid
635         for logging).
636         * src/chage.c: Compilation fix for PAM support (pamh needs to be
637         global since the function split).
638         * src/chage.c: Document process_flags(), check_flags(), check_perms(),
639         open_files(), and close_files().
640         * src/chage.c: Split update_age() and get_defaults() out of main()
641         * src/chage.c: Drop the privileges just after opening the files.
642         * src/chage.c: Do not log to audit only if the user has an entry in
643         the shadow file.
644         * NEWS, src/chage.c (open_files): Also open the password file for
645         writing. This fix chage when the user only has a password entry (and
646         no shadow entries).
647         * src/chage.c (get_defaults): Use default values that don't change the
648         behavior of the account for the fields that are not specified when the
649         user has no shadow entry.
650
651 2007-12-30  Nicolas François  <nicolas.francois@centraliens.net>
652
653         * src/groupadd.c: Compilation fix for PAM support (pamh needs to be
654         global since the function split).
655         * src/groupadd.c: End the PAM transaction in fail_exit().
656         * src/groupadd.c: Document check_flags().
657
658 2007-12-30  Nicolas François  <nicolas.francois@centraliens.net>
659
660         * src/vipw.c: Compilation fix for non-gshadow support.
661
662 2007-12-29  Nicolas François  <nicolas.francois@centraliens.net>
663
664         * NEWS, src/newusers.c: Added support for gshadow.
665
666 2007-12-29  Nicolas François  <nicolas.francois@centraliens.net>
667
668         * NEWS, src/newusers.c: Do not add the new user to the group's
669         members, because the group is already the primary group of the new
670         user.
671
672 2007-12-29  Nicolas François  <nicolas.francois@centraliens.net>
673
674         newusers cleanups
675         * src/newusers.c: main() split in new functions: process_flags(),
676         check_flags(), check_perms(), open_files(), and close_files().
677         * src/newusers.c: Before pam_end(), the return value of the previous
678         pam API was already checked. No need to validate it again.
679         * src/newusers.c: Avoid implicit brackets.
680         * src/newusers.c: Avoid assignments in comparisons.
681         * src/newusers.c: Avoid variables with the name of a type.
682
683 2007-12-29  Nicolas François  <nicolas.francois@centraliens.net>
684
685         chage cleanups
686         * src/chage.c: Before pam_end(), the return value of the previous
687         pam API was already checked. No need to validate it again.
688         * src/chage.c: main() split in new functions: process_flags(),
689         check_flags(), check_perms(), open_files(), and close_files().
690         * src/chage.c: Avoid using a variable with the same name as a type.
691         * src/chage.c: Remove dead code. It was probably put here to add more
692         information to the audit_logger.
693         * src/chage.c: Avoid implicit brackets.
694         * src/chage.c: Avoid implicit conversion to booleans.
695         * src/chage.c: Avoid assignments in comparisons.
696
697 2007-12-28  Nicolas François  <nicolas.francois@centraliens.net>
698
699         Same changes for chgpasswd:
700         * src/chgpasswd.c: Before pam_end(), the return value of the previous
701         pam API was already checked. No need to validate it again.
702         * src/chgpasswd.c: main() split in process_flags(), check_flags(),
703         check_perms(), open_files(), and close_files().
704         * src/chgpasswd.c: Avoid assignments in comparisons.
705         * src/chgpasswd.c: Avoid implicit brackets.
706         * src/chgpasswd.c: Fix comments to match chgpasswd (group instead of
707         user's passwords are changed).
708
709 2007-12-28  Nicolas François  <nicolas.francois@centraliens.net>
710
711         * src/chpasswd.c: Before pam_end(), the return value of the previous
712         pam API was already checked. No need to validate it again.
713         * src/chpasswd.c: New functions: process_flags(), check_flags(),
714         check_perms(). Split out of main().
715         * src/chpasswd.c: Other new functions: open_files(), close_files().
716         This force flushing the password database after the password file is
717         unlocked.
718         * src/chpasswd.c: Avoid assignments in comparisons.
719         * src/chpasswd.c: Avoid implicit brackets.
720
721 2007-12-28  Nicolas François  <nicolas.francois@centraliens.net>
722
723         * src/groupadd.c (find_new_gid): A group with the specified name
724         cannot exist at that time. Remove the check.
725         * src/groupadd.c (find_new_gid): If oflg is set, gflg is also set.
726         Use (!gflg), which is clearer than (!gflg || !oflg).
727         * src/groupadd.c (find_new_gid): find_new_gid is never called when an
728         GID is specified with -g. Simplify find_new_gid accordingly.
729         * src/groupadd.c (process_flags): prefer fail_exit to exit. This avoid
730         an explicit call to audit_logger().
731         * src/groupadd.c (main): Before pam_end(), the return value of the
732         previous pam API was already checked. No need to validate it again.
733         * src/groupadd.c (main, check_perms): New function check_perms().
734         Split the validation of the user's permissions out of main()
735
736 2007-12-28  Nicolas François  <nicolas.francois@centraliens.net>
737
738         src/groupadd.c cleanup
739         * src/groupadd.c (fail_exit): When compiled without AUDIT support, if
740         the return code was E_SUCCESS, fail_exit() wouldn't have exited. Fix
741         the scope of #idef WITH_AUDIT.
742         * src/groupadd.c: Avoid implicit brackets.
743         * src/groupadd.c: Split the processing and checking of options out of
744         main() (process_flags).
745         * src/groupadd.c: New function check_flags(). Split the validation of
746         options and arguments out of process_flags.
747         * src/groupadd.c: Add the parameters' names in the prototypes.
748
749 2007-12-27  Nicolas François  <nicolas.francois@centraliens.net>
750
751         libmisc/copydir.c cleanup
752         * libmisc/copydir.c: Split copy_tree() in more maintainable functions:
753         copy_entry(), copy_dir(), copy_symlink(), copy_hardlink(),
754         copy_special(), and copy_file().
755         * libmisc/copydir.c: -1 is used to indicate an error, directly set err
756         to -1, instead of incrementing it, and checking if not nul at the
757         end.
758         * libmisc/copydir.c: Avoid assignments in comparisons.
759         * libmisc/copydir.c: Document selinux_file_context.
760         * libmisc/copydir.c: Avoid implicit brackets.
761         * libmisc/copydir.c: Avoid implicit conversions to booleans.
762
763 2007-12-27  Nicolas François  <nicolas.francois@centraliens.net>
764
765         gpasswd cleanup
766         * src/gpasswd.c: Add argument name to the internal function
767         prototypes.
768         * src/gpasswd.c: Document global variables.
769         * src/gpasswd.c: New function: process_flags(). Split the processing
770         of options out of main().
771         * src/gpasswd.c: New functions: open_files(), close_files(),
772         update_group(). Split out from main() to simplify this (too) big
773         function.
774         * src/gpasswd.c: New functions: check_perms(), get_group(),
775         change_passwd(), check_flags(). Split out of main() to simplify main().
776         * src/gpasswd.c: Avoid implicit brackets.
777         * src/gpasswd.c: Avoid assignments in comparisons.
778         * src/gpasswd.c: Avoid implicit conversions to booleans.
779
780 2007-12-27  Nicolas François  <nicolas.francois@centraliens.net>
781
782         Merge Debian's patch 462_warn_to_edit_shadow
783         * NEW, src/vipw.c: Recommend editing the shadowed (resp. regular) file
784         if the regular (resp. shadowed) file was edited.
785
786 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
787
788         Merge Debian's patch 451_login_PATH
789         * NEWS, libmisc/setupenv.c: Export PATH according to ENV_PATH and
790         ENV_SUPATH, as for su. This impacts login.
791         * man/login.1.xml: PATH and SUPATH are now used both when PAM support
792         is disabled and enabled.
793
794 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
795
796         Merge Debian's patch 496_login_init_session
797         * src/login.c, src/sulogin.c: If started as init, start a new session.
798
799 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
800
801         Merge Debian's patch 408_passwd_check_arguments
802         * NEWS, src/passwd.c: Make sure that no more than one username
803         argument was provided.
804
805 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
806
807         Merge Debian's patch 412_lastlog_-u_numerical_range
808         * NEWS, src/lastlog.c, man/lastlog.8.xml: Accept numerical user, or
809         ranges with the -u option.
810
811 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
812
813         Merge Debian's patch 466_fflush-prompt
814         * libmisc/Makefile.am, lib/prototypes.h, libmisc/yesno.c, src/grpck.c,
815         src/pwck.c: move yes_or_no() from grpck/pwck to a separate
816         libmisc/yesno.c (with a read_only argument).
817         * libmisc/fields.c, libmisc/yesno.c: Make sure stdout is flushed before
818         reading the user's answer.
819
820 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
821
822         Merge Debian's patch 480_getopt_args_reorder
823         * NEWS, src/su.c: su's arguments are now reordered.
824
825 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
826
827         Merge RedHat's patch shadow-4.0.18.1-mtime.patch:
828         * NEWS: Document that usermod will now preserve user's file modification
829         and access time.
830         * libmisc/copydir.c: Preserve the access and modification time of copied
831         files. This is important for usermod. This will also impact useradd, for
832         the skeleton files, but this is not important.
833         * libmisc/copydir.c: Stop and return an error if a file could not be
834         closed after during a copy.
835
836 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
837
838         Cleanups:
839         * src/useradd.c (find_new_gid): Check that gflg is not set (assert).
840         * src/useradd.c (find_new_gid): Do not check the group name uniqueness
841         (already checked in main).
842         * src/useradd.c (find_new_gid): Avoid a "continue" in the loop.
843         * src/useradd.c (find_new_gid): Remove irrelevant comments.
844         * src/useradd.c (find_new_gid): Fix the function definition's comment.
845
846 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
847
848         Merge RedHat's patch shadow-4.0.18.1-findNewUidOnce.patch:
849         * src/useradd.c (usr_update): Do not call find_new_uid(). The UID was
850         already either specified or found by another call to find_new_uid().
851         * src/useradd.c (find_new_uid): Always start with uid_min (find_new_uid()
852         is never called when user_id was already specified).
853         * src/useradd.c (find_new_uid): Fix the comments (find_new_uid() is not
854         called when the UID is specified (uflg)).
855         * src/useradd.c (main): Only call find_new_uid() if (!oflg) and (!uflg).
856         If uflg is set (but not oflg), check the UID uniqueness.
857         * src/useradd.c (find_new_uid): Don't check the uid and user name
858         uniqueness in find_new_uid(). The user name uniqueness is already checked
859         during the parameter validation. UID uniqueness is also checked (see
860         above).
861         * src/useradd.c (find_new_uid): Don't check uflg in find_new_uid().
862         * src/useradd.c (find_new_uid): Make sure that find_new_uid() is not
863         called when uflg is set (assert).
864
865 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
866
867         Merge RedHat's patch shadow-4.1.0-lOption.patch
868         * NEWS, src/useradd.c, man/useradd.8.xml: Add option -l to avoid adding
869         the user to the lastlog and faillog databases.
870
871 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
872
873         * src/useradd.c, src/groupadd.c: NO_GETPWENT is no more supported. Remove
874         associated chunks of code.
875
876 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
877
878         * man/groupadd.8.xml: Document the long options (--force, --gid, --key,
879         --non-unique).
880
881 2007-12-26  Nicolas François  <nicolas.francois@centraliens.net>
882
883         Merge RedHat's patch shadow-4.0.3-noinst.patch
884         * NEWS, lib/Makefile.am: Do not install the shadow library per default.
885         lib_LTLIBRARIES changed to noinst_LTLIBRARIES.
886
887 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
888
889         * NEWS, configure.in: Prepare the 4.1.0 release.
890
891 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
892
893         * NEWS, src/chgpasswd.c: Use chgpasswd PAM policy file instead of
894         chpasswd's one.
895
896 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
897
898         * man/pwconv.8.xml: Fix typos.
899         * man/chpasswd.8.xml, man/chgpasswd.8.xml: Document the NONE crypt
900         method.
901         * man/login.defs.d/MAIL_DIR.xml: Add comment regarding useradd not
902         using MAIL_FILE.
903         * man/login.defs.d/ERASECHAR.xml, man/login.defs.d/KILLCHAR.xml,
904         man/login.defs.d/CONSOLE_GROUPS.xml, man/login.defs.d/ENV_HZ.xml,
905         man/login.defs.d/ENV_PATH.xml, man/login.defs.d/ENV_SUPATH.xml:
906         These variables are also used by some tools when compiled with PAM
907         support.
908         * man/login.defs.d/ENV_HZ.xml: Add note that it is only used by
909         sulogin when compiled with PAM support.
910         * man/login.defs.d/ENV_SUPATH.xml: Typos: ENV_PATH -> ENV_SUPATH,
911         and mention sbin in the path.
912         * man/login.defs.d/LOGIN_STRING.xml: Fix typo: confition ->
913         condition.
914         * man/sg.1.xml: Add CONFIGURATION section (SYSLOG_SG_ENAB).
915         * man/su.1.xml: ENV_HZ, LOGIN_STRING, MAIL_DIR, USERGROUPS_ENAB
916         are only used when su is compiled without PAM support.
917         * man/login.defs.5.xml: Added variables: OBSCURE_CHECKS_ENAB
918         PASS_ALWAYS_WARN PASS_CHANGE_TRIES SULOG_FILE SU_NAME
919         SU_WHEEL_ONLY SYSLOG_SG_ENAB SYSLOG_SU_ENAB.
920         * man/login.defs.5.xml: ENVIRON_FILE is only used when compiled
921         without PAM support.
922         * man/login.defs.5.xml: sulogin uses variables even when compiled
923         with PAM support.
924         * man/login.1.xml: ENV_HZ ENV_PATH ENV_SUPATH MAIL_DIR UMASK are
925         only used when login is not compiled with PAM support.
926
927 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
928
929         * src/login.c: Make sure is_console is only defined when USE_PAM
930         is not defined.
931
932 2007-12-09  Nicolas François  <nicolas.francois@centraliens.net>
933
934         * libmisc/pwd2spwd.c: Fix time() prototype.
935
936 2007-12-08  Nicolas François  <nicolas.francois@centraliens.net>
937
938         * man/login.defs.d/CONSOLE_GROUPS.xml,
939         man/login.defs.d/CONSOLE.xml, man/login.defs.d/DEFAULT_HOME.xml,
940         man/login.defs.d/ENV_HZ.xml, man/login.defs.d/ENVIRON_FILE.xml,
941         man/login.defs.d/ENV_PATH.xml, man/login.defs.d/ENV_SUPATH.xml,
942         man/login.defs.d/ENV_TZ.xml, man/login.defs.d/ERASECHAR.xml,
943         man/login.defs.d/FAIL_DELAY.xml,
944         man/login.defs.d/FAILLOG_ENAB.xml,
945         man/login.defs.d/FAKE_SHELL.xml, man/login.defs.d/FTMP_FILE.xml,
946         man/login.defs.d/HUSHLOGIN_FILE.xml,
947         man/login.defs.d/ISSUE_FILE.xml, man/login.defs.d/KILLCHAR.xml,
948         man/login.defs.d/LASTLOG_ENAB.xml, man/login.defs.d/LOGIN_RETRIES.xml,
949         man/login.defs.d/LOGIN_TIMEOUT.xml, man/login.defs.d/LOG_OK_LOGINS.xml,
950         man/login.defs.d/LOG_UNKFAIL_ENAB.xml,
951         man/login.defs.d/MAIL_CHECK_ENAB.xml, man/login.defs.d/MOTD_FILE.xml,
952         man/login.defs.d/NOLOGINS_FILE.xml,
953         man/login.defs.d/OBSCURE_CHECKS_ENAB.xml,
954         man/login.defs.d/PASS_ALWAYS_WARN.xml,
955         man/login.defs.d/PASS_CHANGE_TRIES.xml,
956         man/login.defs.d/PASS_MAX_LEN.xml,
957         man/login.defs.d/PORTTIME_CHECKS_ENAB.xml,
958         man/login.defs.d/QUOTAS_ENAB.xml, man/login.defs.d/SULOG_FILE.xml,
959         man/login.defs.d/SU_NAME.xml, man/login.defs.d/SU_WHEEL_ONLY.xml,
960         man/login.defs.d/SYSLOG_SG_ENAB.xml,
961         man/login.defs.d/SYSLOG_SU_ENAB.xml,
962         man/login.defs.d/TTYGROUP.xml, man/login.defs.d/TTYTYPE_FILE.xml,
963         man/login.defs.d/ULIMIT.xml, man/login.defs.d/USERGROUPS_ENAB.xml:
964         New documentation of login.defs variables.
965         * man/login.defs.d/MAIL_DIR.xml: Updated. It now contains the
966         MAIL_FILE documentation.
967         * man/login.defs.d/LOGIN_STRING.xml: Updated. Mentions %s.
968         * man/pwconv.8.xml, man/groupmems.8.xml, man/groupdel.8.xml,
969         man/useradd.8.xml, man/pwck.8.xml, man/groupadd.8.xml,
970         man/sulogin.8.xml, man/newgrp.1.xml, man/usermod.8.xml,
971         man/su.1.xml, man/vipw.8.xml, man/passwd.1.xml,
972         man/groupmod.8.xml, man/login.1.xml, man/userdel.8.xml,
973         man/grpck.8.xml: Added CONFIGURATION section.
974         * man/generate_mans.mak: The generations of manpages depends on
975         the variables from the Makefiles. Add the dependency on Makefile.
976         * man/login.defs.5.xml: New login.defs variable documented.
977         * man/Makefile.am: Added XML variable documentation to the
978         distributed files.
979
980 2007-12-05  Nicolas François  <nicolas.francois@centraliens.net>
981
982         * man/gshadow.5.xml: Fix the newgrp section in the gshadow.5
983         manpage. Thanks to Andre Majorel <aym-naibed@teaser.fr>.
984
985 2007-11-27  Nicolas François  <nicolas.francois@centraliens.net>
986
987         * man/Makefile.am: Added the login.defs variables description to
988         the man's EXTRA_DIST.
989
990 2007-11-27  Nicolas François  <nicolas.francois@centraliens.net>
991
992         * man/chfn.1.xml: Uses CHFN_AUTH, CHFN_RESTRICT, LOGIN_STRING.
993         * man/chgpasswd.8.xml: Uses ENCRYPT_METHOD, MAX_MEMBERS_PER_GROUP,
994         MD5_CRYPT_ENAB, SHA_CRYPT_MIN_ROUNDS (SHA_CRYPT_MAX_ROUNDS).
995         * man/chpasswd.8.xml: Switch to using entities for ENCRYPT_METHOD,
996         MD5_CRYPT_ENAB, SHA_CRYPT_MIN_ROUNDS (SHA_CRYPT_MAX_ROUNDS).
997         * man/chsh.1.xml: Uses CHSH_AUTH, LOGIN_STRING.
998         * man/expiry.1.xml: Does not use any login.defs parameter.
999         * man/gpasswd.1.xml: Uses ENCRYPT_METHOD, MAX_MEMBERS_PER_GROUP,
1000         MD5_CRYPT_ENAB, SHA_CRYPT_MIN_ROUNDS.
1001         * man/login.defs.5.xml: Added CHSH_AUTH.
1002         * man/login.defs.5.xml: Cross reference -> cross references.
1003         * man/login.defs.5.xml: chfn only uses CHFN_AUTH when no_pam.
1004         * man/login.defs.5.xml: chsh uses CHSH_AUTH, not CHFN_AUTH.
1005         * man/login.defs.d/CHSH_AUTH.xml: Added.
1006         * man/login.defs.5.xml: chsh uses parameters only when no_pam.
1007         * man/login.defs.5.xml: expiry does not use CONSOLE_GROUPS, even
1008         if linked in the binary.
1009         * man/newusers.8.xml: Uses ENCRYPT_METHOD, MAX_MEMBERS_PER_GROUP,
1010         MD5_CRYPT_ENAB, PASS_MAX_DAYS, PASS_MIN_DAYS, PASS_WARN_AGE,
1011         SHA_CRYPT_MIN_ROUNDS, UMASK.
1012
1013 2007-11-26  Nicolas François  <nicolas.francois@centraliens.net>
1014
1015         * man/generate_translations.mak, man/po/Makefile.in.in: Add
1016         --expand-all-entities to the call to xml2po to avoid translating
1017         the external entities separately.
1018
1019 2007-11-26  Nicolas François  <nicolas.francois@centraliens.net>
1020
1021         * man/login.defs.d/, man/login.defs.d/CHFN_RESTRICT.xml,
1022         man/login.defs.d/MAIL_DIR.xml, man/login.defs.d/PASS_MAX_DAYS.xml,
1023         man/login.defs.d/SHA_CRYPT_MIN_ROUNDS.xml,
1024         man/login.defs.d/CHFN_AUTH.xml, man/login.defs.d/MD5_CRYPT_ENAB.xml,
1025         man/login.defs.d/PASS_WARN_AGE.xml, ·man/login.defs.d/UMASK.xml,
1026         man/login.defs.d/PASS_MIN_DAYS.xml, man/login.defs.d/UID_MAX.xml,
1027         man/login.defs.d/LOGIN_STRING.xml, man/login.defs.d/GID_MAX.xml,
1028         man/login.defs.d/ENCRYPT_METHOD.xml, man/login.defs.d/USERDEL_CMD.xml,
1029         man/login.defs.d/MAX_MEMBERS_PER_GROUP.xml, man/login.defs.5.xml:
1030         Put each variable description in an external entities. This will permit
1031         to reference them in the various utils manpages.
1032         * man/login.defs.5.xml: Describe the usage of variables by each
1033         tools when compiled without PAM support.
1034
1035 2007-11-26  Nicolas François  <nicolas.francois@centraliens.net>
1036
1037         * po/stats: Do not generate gmo files.
1038
1039 2007-11-25  Nicolas François  <nicolas.francois@centraliens.net>
1040
1041         * man/po/LINGUAS: Added missing LINGUAS.
1042         * man/po/de.po, man/po/fr.po, man/po/it.po, man/po/pl.po,
1043         man/po/ru.po, man/po/sv.po: Updated.
1044
1045 2007-11-25  Nicolas François  <nicolas.francois@centraliens.net>
1046
1047         * configure.in, man/po/Makefile.in.in, man/po/Makevars,
1048         man/po/POTFILES.in, man/Makefile.am: Generate the PO files for the
1049         manpages in the man/po directory (instead of man/<lang>). Use a
1050         Makefile.in.in based on gettext's one. This ensure that the PO are
1051         generated before being used in the <lang> directories.
1052         * man/generate_mans.mak, man/generate_translations.mak,
1053         man/Makefile.am: New makefile for the generation of manpages from
1054         XML (generate_mans.mak). This avoid duplicate chunks in
1055         generate_translations.mak and Makefile.am
1056         * man/de/de.po, man/fr/fr.po, man/it/it.po, man/pl/pl.po,
1057         man/ru/ru.po, man/sv/sv.po: Moved to...
1058         * man/po/de.po, man/po/fr.po, man/po/it.po, man/po/pl.po,
1059         man/po/ru.po, man/po/sv.po: ... here.
1060
1061 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1062
1063         * src/userdel.c, src/lastlog.c, src/newusers.c, src/chpasswd.c,
1064         src/usermod.c, src/chgpasswd.c, src/vipw.c, src/useradd.c,
1065         src/su.c, src/groupmod.c, src/passwd.c, src/groupadd.c,
1066         src/chage.c, src/faillog.c, src/chsh.c: Do not use tabulations in
1067         Usage strings.
1068         * po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po,
1069         po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po,
1070         po/it.po, po/ja.po, po/nb.po, po/pl.po, po/pt_BR.po, po/pt.po,
1071         po/ro.po, po/ru.po, po/sk.po, po/sv.po, po/tl.po, po/tr.po,
1072         po/uk.po, po/vi.po: Unfuzzy previous changes.
1073         * po/bs.po, po/he.po, po/nn.po, po/sq.po: No Usage string
1074         translated. Just updated PO.
1075         * po/dz.po, po/km.po, po/ko.po, po/ne.po, po/nl.po, po/zh_CN.po,
1076         po/zh_TW.po: It would be too error prone for me to unfuzzy these
1077         ones. Updated PO. (km and ne should be reviewed: options are
1078         translated).
1079
1080 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1081
1082         * po/ne.po, po/bs.po, po/cs.po, po/pt_BR.po, po/km.po, po/es.po,
1083         po/eu.po, po/ko.po, po/hu.po, po/sk.po, po/vi.po, po/uk.po,
1084         po/ro.po, po/sq.po, po/ru.po, po/id.po, po/nb.po, po/el.po,
1085         po/gl.po, po/fr.po, po/nl.po, po/pl.po, po/nn.po, po/it.po,
1086         po/dz.po, po/tl.po, po/pt.po, po/ca.po, po/da.po, po/tr.po,
1087         po/sv.po, po/de.po, po/ja.po, po/zh_TW.po, po/he.po, po/fi.po,
1088         po/zh_CN.po: Run "make update-po" in the po directory.
1089
1090 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1091
1092         * configure.in: New configure option: --with-sha-crypt enabled by
1093         default. Keeping the feature enabled is safe. Disabling it permits
1094         to disable the references to the SHA256 and SHA512 password
1095         encryption algorithms from the usage help and manuals (in addition
1096         to the support for these algorithms in the code).
1097         * libmisc/obscure.c, libmisc/salt.c, src/newusers.c,
1098         src/chpasswd.c, src/chgpasswd.c, src/passwd.c: ENCRYPT_METHOD is
1099         always supported in login.defs. Remove the ENCRYPTMETHOD_SELECT
1100         preprocessor condition.
1101         * libmisc/obscure.c, libmisc/salt.c, src/newusers.c,
1102         src/chpasswd.c, src/chgpasswd.c, src/passwd.c: Disable SHA256 and
1103         SHA512 if USE_SHA_CRYPT is not defined (this corresponds to a
1104         subset of the ENCRYPTMETHOD_SELECT sections).
1105
1106 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1107
1108         * lib/encrypt.c: If we requested a non DES encryption, make sure
1109         crypt returned a encrypted password longer than 13 chars. This
1110         protects against the GNU crypt() which does not return NULL if the
1111         algorithm is not supported, and return a DES encrypted password.
1112
1113 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1114
1115         * lib/groupio.c: Add missing #include "getdef.h"
1116
1117 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1118
1119         * src/newusers.c: Provide the crypt method to all the
1120         crypt_make_salt invocations.
1121         * src/newusers.c: Tag the ENCRYPTMETHOD_SELECT dependent code
1122         accordingly.
1123
1124 2007-11-24  Nicolas François  <nicolas.francois@centraliens.net>
1125
1126         * libmisc/salt.c: Make sure method is not NULL, defaulting to DES.
1127         Thanks to Dan Kopecek <dkopecek@redhat.com>.
1128         * src/chpasswd.c, src/chgpasswd.c: Do not use DES by default, but
1129         the system default define in /Etc/login.defs. Thanks to Dan
1130         Kopecek <dkopecek@redhat.com>.
1131         * NEWS, man/chpasswd.8.xml, man/chgpasswd.8.xml: Do not mention
1132         DES as the default algorithm.
1133         * src/chpasswd.c, src/chgpasswd.c: Tag the ENCRYPTMETHOD_SELECT
1134         dependent code accordingly.
1135
1136 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1137
1138         * libmisc/salt.c: Move the srandom call to gensalt.
1139         * libmisc/salt.c (gensalt): Replace the test on salt_size by an
1140         assert.
1141
1142 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1143
1144         Patch contributed by Dan Kopecek <dkopecek@redhat.com>
1145         * src/chpasswd.c, src/chgpasswd.c, src/newusers.c: Fix compilation
1146         when ENCRYPTMETHOD_SELECT is not defined.
1147         * libmisc/salt.c (MAGNUM): The nul char was put on (array)[2]
1148         instead of (array)[3].
1149         * libmisc/salt.c: MAGNUM should be defined even if
1150         ENCRYPTMETHOD_SELECT is not defined.
1151         * libmisc/salt.c: Use random instead of rand.
1152         * libmisc/salt.c (gensalt): New function to generate a salt
1153         (instead of using gettimeofday).
1154
1155 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1156
1157         * NEWS, src/newusers.c: New options -c/--crypt-method
1158         -s/--sha-rounds.
1159
1160 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1161
1162         * src/chpasswd.c: Added crypt method: NONE.
1163         * src/chpasswd.c: Added --sha-rounds to the usage().
1164         * libmisc/Makefile.am, libmisc/getlong.c, src/chgpasswd.c,
1165         src/chpasswd.c, lib/prototypes.h: New getlong function. Replace
1166         chpasswd's and chgpasswd's getnumber.
1167
1168 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1169
1170         * lib/groupio.c: Removed unused variable 'member'.
1171
1172 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1173
1174         * man/chpasswd.8.xml: Document the variables used by chpasswd.
1175         The definitions are copied from login.defs. I should try to use a
1176         less error prone process for this.
1177
1178 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1179
1180         * man/login.defs.5.xml: Use <replaceable> for the values set by
1181         users. (was sometimes <emphasis remap='I'>)
1182         * man/login.defs.5.xml: Use <option> vor the variable names. This
1183         makes the manpage much more readable.
1184         * man/login.defs.5.xml (ENCRYPT_METHOD, MD5_CRYPT_ENAB,
1185         SHA_CRYPT_MIN_ROUNDS, SHA_CRYPT_MAX_ROUNDS): Mention that command
1186         line option may supersede the system setting.
1187         * man/login.defs.5.xml: Document the variables used by chpasswd
1188         and chgpasswd.
1189
1190 2007-11-23  Nicolas François  <nicolas.francois@centraliens.net>
1191
1192         * lib/shadowmem.c, lib/groupmem.c, lib/pwmem.c:
1193         svn propset svn:keywords Id
1194
1195 2007-11-22  Nicolas François  <nicolas.francois@centraliens.net>
1196
1197         * NEWS, lib/getdef.c, man/login.defs.5.xml: New login.defs
1198         variable: MAX_MEMBERS_PER_GROUP. Used for the split groups support.
1199         * lib/commonio.c, lib/commonio.h: Add an open_hook and close_hook
1200         operation. They are called after the database is actually opened
1201         and parse, or before it is closed.
1202         * lib/groupio.c: Add an open_hook to merge split groups, and an
1203         close group to split groups if MAX_MEMBERS_PER_GROUP is set.
1204         This fixes gpasswd and chgpasswd when split groups are used.
1205         * lib/sgroupio.c, lib/shadowio.c, lib/pwio.c: No open or close
1206         hooks for these databases. (unsure about what should be the gshadow
1207         behavior for split groups)
1208
1209 2007-11-22  Nicolas François  <nicolas.francois@centraliens.net>
1210
1211         * NEWS, src/gpasswd.c: Read the group and shadow groups using
1212         gr_locate and sgr_locate. gpasswd write in the file database. Thus
1213         it should read information from the file database, not using
1214         getgrnam. The change to sgr_locate is just for consistency. This
1215         requires opening the group databases (read only) using
1216         gr_open/sgr_open.
1217
1218 2007-11-22  Nicolas François  <nicolas.francois@centraliens.net>
1219
1220         * configure.in: SHADOWGRP added to AM_CONDITIONAL for the
1221         generation of manpages.
1222         * man/generate_translations.mak: Added pam/no_pam condition (like
1223         in man/Makefile.am).
1224         * man/Makefile.am, man/generate_translations.mak: Added
1225         gshadow/no_gshadow condition.
1226         * man/gpasswd.1.xml: Use the gshadow/no_gshadow condition to
1227         change the manpage depending on the shadow group support.
1228         * NEWS: Indicate that manpages should be re-generated if configure
1229         option are changed, due to conditions.
1230
1231 2007-11-22  Nicolas François  <nicolas.francois@centraliens.net>
1232
1233         * po/ru.po: Updated to 399t. Thanks to Yuri Kozlov <kozlov.y@gmail.com>.
1234         * man/po/ru.po: Updated to 757t. Thanks also to Yuri Kozlov
1235         <kozlov.y@gmail.com>.
1236
1237 2007-11-22  Nicolas François  <nicolas.francois@centraliens.net>
1238
1239         * man/Makefile.am: Add support for conditionally including
1240         paragraphs. (e.g. to support the documentation of PAM and !PAM
1241         features).
1242
1243 2007-11-21  Nicolas François  <nicolas.francois@centraliens.net>
1244
1245         * man/newusers.8.xml: Added /etc/gshadow, /etc/group, /etc/shadow,
1246         and /etc/passwd to section FILES.
1247         * man/newusers.8.xml: Mentions that PAM is not used to set the
1248         passwords.
1249         * man/chpasswd.8.xml: Added section FILES (/etc/passwd,
1250         /etc/shadow, /etc/login.defs).
1251         * man/chpasswd.8.xml: Use the same paragraph as in newusers.8.xml
1252         to indicate that PAM is not used.
1253         * man/chgpasswd.8.xml: Added section FILES (/etc/group,
1254         /etc/gshadow, /etc/login.defs).
1255
1256 2007-11-21  Nicolas François  <nicolas.francois@centraliens.net>
1257
1258         * src/newusers.c: Try harder to get the GID equal to the UID.
1259         This was not the case when the GID is not specified, and a GID
1260         exist with an ID higher than the all the UIDs.
1261         * src/newusers.c: Typo in comment: contrained -> constrained.
1262
1263 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1264
1265         * src/chgpasswd.c: If the shadow group file is not present, do not
1266         try to locate the group entry from /etc/gshadow, and set the
1267         password in /etc/group.
1268
1269 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1270
1271         * libmisc/obscure.c, libmisc/salt.c, src/passwd.c: Match DES, MD5,
1272         SHA256, and SHA512 exactly (not only the first 3/6 chars).
1273         * libmisc/salt.c (SHA_salt_rounds): Set rounds to the specified
1274         prefered_rounds value, if specified.
1275         * src/gpasswd.c, libmisc/salt.c: Fix compilation warnings (use
1276         size_t for lengths).
1277         * src/chpasswd.c, src/chgpasswd.c: Add missing parenthesis.
1278
1279 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1280
1281         * man/sv, man/de, man/fr, man/pl, man/ru, man/it: Ignore the
1282         generated manpages. Add *.[1358] to the svn:ignore property.
1283
1284 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1285
1286         * src/chgpasswd.c, src/chpasswd.c: The -c, -e, and -m options are
1287         exclusives.
1288
1289 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1290
1291         * man/chpasswd.8.xml, man/chgpasswd.8.xml: Document how the
1292         encryption algorithm is chosen for the passwords. Document the new
1293         -c and -s options. Add a reference to login.defs(5).
1294         * man/login.defs.5.xml: Document the ENCRYPT_METHOD,
1295         MD5_CRYPT_ENAB, SHA_CRYPT_MIN_ROUNDS, and SHA_CRYPT_MAX_ROUNDS
1296         variables.
1297         * etc/login.defs: Indicate that MD5_CRYPT_ENAB is deprecated.
1298         Document the relationship with PAM for MD5_CRYPT_ENAB and
1299         ENCRYPT_METHOD.
1300
1301 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1302
1303         * src/passwd.c: Increase the size of crypt_passwd from 128 to 256
1304         to avoid overflow in case of SHA512 (161 should be sufficient).
1305
1306 2007-11-20  Nicolas François  <nicolas.francois@centraliens.net>
1307
1308         * lib/prototypes.h, libmisc/salt.c: Add parameters to
1309         crypt_make_salt to force the crypt method and number of rounds.
1310         * libmisc/salt.c: Add parameter to SHA_salt_rounds to force the
1311         number of rounds.
1312         * libmisc/salt.c, lib/getdef.c: ENCRYPT_METHOD and MD5_CRYPT_ENAB
1313         are needed also when USE_PAM (e.g. for chpasswd).
1314         * src/passwd.c, src/newusers.c, src/gpasswd.c: Use the new
1315         crypt_make_salt prototype
1316         * src/chpasswd.c, src/chgpasswd.c: Add option -c, --crypt-method
1317         and -s, --sha-rounds to specify the crypt method and number of
1318         rounds in case of one of the SHA methods. The new prototype of
1319         crypt_make_salt simplifies the handling of -m, --md5.
1320
1321 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1322
1323         * libmisc/salt.c: The salt has a random size (between 8 and 16
1324         bytes).
1325         * lib/getdef.c, etc/login.defs: Add definitions for
1326         SHA_CRYPT_MIN_ROUNDS and SHA_CRYPT_MAX_ROUNDS.
1327         * libmisc/salt.c: Use SHA_CRYPT_MIN_ROUNDS and SHA_CRYPT_MAX_ROUNDS
1328         to add a random number of rounds if needed.
1329
1330 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1331
1332         * libmisc/salt.c (MAGNUM): Terminate the array with nul (the array
1333         is then used with strcat).
1334         * libmisc/salt.c (crypt_make_salt): Initialize result[0] to nul at
1335         the beginning (was not initialized when USE_PAM).
1336         * libmisc/salt.c (crypt_make_salt): Check that ENCRYPT_METHOD is a
1337         valid crypt method.
1338
1339 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1340
1341         * NEWS, libmisc/obscure.c, libmisc/salt.c, src/passwd.c,
1342         lib/getdef.c, etc/login.defs: Add support for SHA256 and SHA512
1343         encrypt methods. Apply RedHat's patch shadow-4.0.18.1-sha256.patch.
1344         Thanks to Peter Vrabec. Hardly no changes except re-indent and
1345         changes related to recent modifications (max_salt_len in
1346         crypt_make_salt). Changes in lib/defines.h not applied (definition
1347         of ENCRYPTMETHOD_SELECT). I will add a configure check or flag.
1348
1349 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1350
1351         * man/de/Makefile.am: Add su.1 to the generated manpages.
1352         * man/fr/Makefile.am: Add id.1 to EXTRA_DIST. It will be
1353         generated.
1354         * man/pl/Makefile.am: Add groupmems.8 to the generated manpages.
1355         * man/it/Makefile.am: Add logoutd.8 to EXTRA_DIST. It will be
1356         generated.
1357         * man/de/su.1, man/fr/id.1, man/pl/groupmems.8, man/it/logoutd.8:
1358         Removed, since auto-generated.
1359
1360 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1361
1362         Fix some compilation warnings:
1363         * src/login.c: "dereferencing type-punned pointer will break
1364         strict-aliasing rules", add a variable indirection: ptr_pam_user.
1365         * lib/commonio.c: do not initialize the sb stat structure.
1366         * lib/pwio.c, lib/shadowio.c, lib/sgroupio.c, lib/groupio.c:
1367         initialize the security context if WITH_SELINUX.
1368         * lib/nscd.c: The service argument is not const (used in the exec*
1369         parameters). This matches with the prototype definition.
1370         * src/groupmems.c: Avoid ++i when i is also used in the same line.
1371         * src/newusers.c: i is positive every time it is compared. Add
1372         cast to unsigned int.
1373         * src/nologin.c: Use a main() prototype with no arguments.
1374         * libmisc/getdate.y: Initialize the type and value fields of the
1375         terminating entry for each TABLE.
1376         * libmisc/tz.c: Use "TZ=CST6CDT" as the default timezone.
1377
1378 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1379
1380         * man/pl/Makefile.am: Add getspnam.3 to EXTRA_DIST since it is
1381         generated with shadow.3.
1382         * man/generate_translations.mak: Clean all the manpages, based on
1383         $(EXTRA_DIST), not $(man_MANS).
1384
1385 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1386
1387         * man/sv/getspnam.3, man/sv/faillog.5, man/sv/faillog.8,
1388         man/sv/grpconv.8, man/sv/chsh.1, man/sv/shadow.3,
1389         man/sv/grpunconv.8, man/sv/shadow.5, man/sv/newgrp.1,
1390         man/sv/limits.5, man/sv/gpasswd.1, man/sv/sg.1, man/sv/userdel.8,
1391         man/sv/lastlog.8, man/sv/login.access.5, man/sv/grpck.8,
1392         man/sv/chfn.1, man/sv/expiry.1, man/sv/newusers.8,
1393         man/sv/chpasswd.8, man/sv/pwconv.8, man/sv/logoutd.8,
1394         man/sv/groupmems.8, man/sv/usermod.8, man/sv/pwunconv.8,
1395         man/sv/su.1, man/sv/groupdel.8, man/sv/chgpasswd.8,
1396         man/sv/login.defs.5, man/sv/vipw.8, man/sv/useradd.8,
1397         man/sv/gshadow.5, man/sv/passwd.1, man/sv/groupmod.8,
1398         man/sv/passwd.5, man/sv/chage.1, man/sv/porttime.5,
1399         man/sv/login.1, man/sv/pwck.8, man/sv/nologin.8,
1400         man/sv/groupadd.8, man/sv/suauth.5, man/sv/vigr.8,
1401         man/sv/groups.1, man/de/passwd.1, man/de/newgrp.1, man/de/chsh.1,
1402         man/de/passwd.5, man/de/login.1, man/de/vipw.8, man/de/chfn.1,
1403         man/de/vigr.8, man/de/groups.1, man/fr/getspnam.3,
1404         man/fr/faillog.5, man/fr/faillog.8, man/fr/grpconv.8,
1405         man/fr/chsh.1, man/fr/shadow.3, man/fr/grpunconv.8,
1406         man/fr/shadow.5, man/fr/newgrp.1, man/fr/limits.5,
1407         man/fr/gpasswd.1, man/fr/sg.1, man/fr/userdel.8,
1408         man/fr/login.access.5, man/fr/lastlog.8, man/fr/grpck.8,
1409         man/fr/chfn.1, man/fr/expiry.1, man/fr/newusers.8,
1410         man/fr/chpasswd.8, man/fr/pwconv.8, man/fr/logoutd.8,
1411         man/fr/usermod.8, man/fr/pwunconv.8, man/fr/su.1,
1412         man/fr/groupdel.8, man/fr/login.defs.5, man/fr/vipw.8,
1413         man/fr/useradd.8, man/fr/gshadow.5, man/fr/passwd.1,
1414         man/fr/groupmod.8, man/fr/passwd.5, man/fr/porttime.5,
1415         man/fr/chage.1, man/fr/login.1, man/fr/pwck.8, man/fr/groupadd.8,
1416         man/fr/suauth.5, man/fr/vigr.8, man/fr/groups.1, man/pl/faillog.5,
1417         man/pl/faillog.8, man/pl/chsh.1, man/pl/grpconv.8,
1418         man/pl/grpunconv.8, man/pl/shadow.5, man/pl/newgrp.1,
1419         man/pl/limits.5, man/pl/gpasswd.1, man/pl/sg.1, man/pl/userdel.8,
1420         man/pl/login.access.5, man/pl/lastlog.8, man/pl/grpck.8,
1421         man/pl/chfn.1, man/pl/expiry.1, man/pl/newusers.8,
1422         man/pl/pwconv.8, man/pl/chpasswd.8, man/pl/logoutd.8,
1423         man/pl/usermod.8, man/pl/pwunconv.8, man/pl/su.1,
1424         man/pl/groupdel.8, man/pl/vipw.8, man/pl/login.defs.5,
1425         man/pl/useradd.8, man/pl/passwd.1, man/pl/groupmod.8,
1426         man/pl/passwd.5, man/pl/porttime.5, man/pl/chage.1,
1427         man/pl/login.1, man/pl/pwck.8, man/pl/groupadd.8, man/pl/suauth.5,
1428         man/pl/vigr.8, man/pl/groups.1, man/ru/getspnam.3,
1429         man/ru/faillog.5, man/ru/faillog.8, man/ru/grpconv.8,
1430         man/ru/chsh.1, man/ru/shadow.3, man/ru/grpunconv.8,
1431         man/ru/shadow.5, man/ru/newgrp.1, man/ru/limits.5,
1432         man/ru/gpasswd.1, man/ru/sg.1, man/ru/userdel.8,
1433         man/ru/login.access.5, man/ru/lastlog.8, man/ru/grpck.8,
1434         man/ru/chfn.1, man/ru/expiry.1, man/ru/newusers.8,
1435         man/ru/chpasswd.8, man/ru/pwconv.8, man/ru/logoutd.8,
1436         man/ru/groupmems.8, man/ru/usermod.8, man/ru/pwunconv.8,
1437         man/ru/su.1, man/ru/groupdel.8, man/ru/chgpasswd.8,
1438         man/ru/login.defs.5, man/ru/vipw.8, man/ru/useradd.8,
1439         man/ru/gshadow.5, man/ru/passwd.1, man/ru/groupmod.8,
1440         man/ru/passwd.5, man/ru/chage.1, man/ru/porttime.5,
1441         man/ru/login.1, man/ru/pwck.8, man/ru/nologin.8,
1442         man/ru/groupadd.8, man/ru/suauth.5, man/ru/vigr.8,
1443         man/ru/groups.1, man/it/getspnam.3, man/it/faillog.5,
1444         man/it/faillog.8, man/it/grpconv.8, man/it/chsh.1,
1445         man/it/shadow.3, man/it/grpunconv.8, man/it/shadow.5,
1446         man/it/newgrp.1, man/it/gpasswd.1, man/it/sg.1, man/it/userdel.8,
1447         man/it/lastlog.8, man/it/grpck.8, man/it/chfn.1, man/it/expiry.1,
1448         man/it/newusers.8, man/it/chpasswd.8, man/it/pwconv.8,
1449         man/it/usermod.8, man/it/pwunconv.8, man/it/su.1,
1450         man/it/groupdel.8, man/it/vipw.8, man/it/useradd.8,
1451         man/it/passwd.1, man/it/groupmod.8, man/it/passwd.5,
1452         man/it/porttime.5, man/it/chage.1, man/it/login.1, man/it/pwck.8,
1453         man/it/groupadd.8, man/it/vigr.8, man/it/groups.1,
1454         man/pl/shadow.3, man/pl/sulogin.8, man/pl/id.1, man/ru/sulogin.8,
1455         man/ru/id.1, man/it/id.1: Remove generated translated manpages.
1456         They are still distributed with the shadow tarballs.
1457
1458 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1459
1460         * man/pl/chgpassw.8: Remove chgpassw.8 since the real manpage
1461         should be named chgpasswd.8.
1462
1463 2007-11-19  Nicolas François  <nicolas.francois@centraliens.net>
1464
1465         * man/vigr.8.xml: Remove file. The vigr man page is generated from
1466         the vipw XML file.
1467
1468 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1469
1470         * lib/prototypes.h, configure.in, libmisc/Makefile.am,
1471         libmisc/xgetXXbyYY.c, libmisc/xgetpwnam.c, libmisc/xgetpwuid.c,
1472         libmisc/xgetgrnam.c, libmisc/xgetgrgid.c, libmisc/xgetspnam.c:
1473         Added functions xgetpwnam(), xgetpwuid(), xgetgrnam(),
1474         xgetgrgid(), and xgetspnam(). They allocate memory for the
1475         returned structure and are more robust to successive calls. They
1476         are implemented with the libc's getxxyyy_r() functions if
1477         available.
1478         * NEWS, libmisc/limits.c, libmisc/entry.c, libmisc/chowntty.c,
1479         libmisc/addgrps.c, libmisc/myname.c, libmisc/rlogin.c,
1480         libmisc/pwdcheck.c, src/newgrp.c, src/login_nopam.c, src/login.c,
1481         src/userdel.c, src/lastlog.c, src/grpck.c, src/gpasswd.c,
1482         src/newusers.c, src/chpasswd.c, src/chfn.c, src/groupmems.c,
1483         src/usermod.c, src/expiry.c, src/groupdel.c, src/chgpasswd.c,
1484         src/su.c, src/useradd.c, src/groupmod.c, src/passwd.c, src/pwck.c,
1485         src/groupadd.c, src/chage.c, src/login.c, src/suauth.c,
1486         src/faillog.c, src/groups.c, src/chsh.c, src/id.c: Review all the
1487         usage of one of the getpwnam(), getpwuid(), getgrnam(),
1488         getgrgid(), and getspnam() functions. It was noticed on
1489         http://bugs.debian.org/341230 that chfn and chsh use a passwd
1490         structure after calling a pam function, which result in using
1491         information from the passwd structure requested by pam, not the
1492         original one. It is much easier to use the new xget... functions
1493         to avoid these issues. I've checked which call to the original
1494         get... functions could be left (reducing the scope of the
1495         structure if possible), and I've left comments to ease future
1496         reviews (e.g. /* local, no need for xgetpwnam */).
1497         Note: the getpwent/getgrent calls should probably be checked also.
1498         * src/groupdel.c, src/expiry.c: Fix typos in comments.
1499         * src/groupmod.c: Re-indent.
1500         * lib/Makefile.am, lib/groupmem.c, lib/groupio.c, lib/pwmem.c,
1501         lib/pwio.c, lib/shadowmem.c, lib/shadowio.c: Move the __<xx>_dup
1502         functions (used by the xget... functions) from the <xx>io.c files
1503         to the new <xx>mem.c files. This avoid linking some utils against
1504         the SELinux library.
1505
1506 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1507
1508         * man/pl/pl.po: Fix typo: chgpassw -> chgpasswd.
1509         * man/pl/Makefile.am: Fix typo: chgpassw -> chgpasswd.
1510         * man/de/de.po: groups shall not be translated (for command,
1511         refname, or refentrytitle).
1512
1513 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1514
1515         * src/login.c: Fix typo introduced while fixing
1516         http://bugs.debian.org/451521 (compile fix).
1517
1518 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1519
1520         * libmisc/Makefile.am: Fix typo: EXTRA_DOST -> EXTRA_DIST.
1521
1522 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1523
1524         * src/login_nopam.c: Fix a typo in a comment.
1525
1526 2007-11-18  Nicolas François  <nicolas.francois@centraliens.net>
1527
1528         * src/useradd.c: Do not document the behavior compared to old
1529         versions.
1530
1531 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1532
1533         * man/usermod.8.xml: Document the differences between locking an
1534         account and locking a password.
1535
1536 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1537
1538         * NEWS, src/usermod.c: Refuse to unlock an account when it would
1539         result in a passwordless account.  Based on Openwall's patch
1540         shadow-4.0.4.1-owl-usermod-unlock.diff.
1541         * NEWS, src/passwd.c: Likewise.
1542
1543 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1544
1545         * src/userdel.c (path_prefix): Make sure that the prefix is the
1546         name of a directory (not only the beginning of a directory).
1547         Openwall patch shadow-4.0.4.1-owl-userdel-path_prefix.diff.
1548
1549 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1550
1551         * NEWS, src/newgrp.c: Do not give an indication that the group has no
1552         password.
1553         * src/newgrp.c: Do not only bail on syslog if the password is not
1554         valid. Also give an indication to the user on stderr.
1555
1556 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1557
1558         Fixes from Openwall patch shadow-4.0.4.1-owl-chage-drop-priv.diff:
1559         * src/chage.c: Remove cleanup(). pw_lock is never called. Replace
1560         cleanup(2) by spw_unlock and remove the calls to cleanup(1).
1561         * src/chage.c: Remove variable pwrw. It is always set to 0. The
1562         password database is always read only.
1563         * src/chage.c: Make chage -l also drop the saved GID.
1564         * src/chage.c: Prefer setregid/setreuid to setgid/setuid.
1565
1566 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1567
1568         Fixes from Openwall patch shadow-4.0.4.1-alt-man.diff:
1569         * man/useradd.8.xml: Indicate that the NIS caveats is also valid
1570         for any external database as LDAP.
1571         * man/groupadd.8.xml: Likewise.
1572         * man/groupadd.8.xml: Reorder and reformat the caveats bullets.
1573
1574 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1575
1576         * NEWS: Applied Debian patch 409_man_generate_from_PO to
1577         automatically generate the translated manpages from the POs.
1578         * man/Makefile.am: Replace the individual rules for the generation
1579         of the manpages (from XML) by a generic Makefile rule an
1580         dependencies for the linked manpages.
1581         * man/generate_translations.mak: Generic rules for all the
1582         generated translated manpages (if ENABLE_REGENERATE_MAN).
1583         * man/Makefile.am: Removed rules for all the generated translated
1584         manpages.
1585         * man/sv/Makefile.am, man/de/Makefile.am, man/fr/Makefile.am,
1586         man/pl/Makefile.am, man/ru/Makefile.am, man/it/Makefile.am:
1587         Include generate_translations.mak to handle the generated
1588         translations (XML and roff files).
1589         * man/Makefile.am: Translated XML files moved from the CLEANFILES
1590         variable of man/Makefile.am to the various languages Makefiles.
1591
1592 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1593
1594         * man/chpasswd.8.xml: Document that chpasswd does not use PAM to
1595         update the passwords. This fixes http://bugs.debian.org/396726.
1596         Debian patch 411_chpasswd_document_no_pam.
1597
1598 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1599
1600         * NEWS, src/su.c: Avoid terminating the PAM library in the forked
1601         child.  This is done later in the parent after closing the PAM
1602         session. This fixes http://bugs.debian.org/412061.
1603         Debian patch 405_su_no_pam_end_before_exec.
1604
1605 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1606
1607         * man/newgrp.1.xml: Mention sg in the newgrp manpage.
1608         This fixes http://bugs.debian.org/396690.
1609         Debian patch 410_newgrp_man_mention_sg.
1610
1611 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1612
1613         * src/passwd.c: Fix typo: the warndays option was called warning.
1614         This is now warndays, as documented in the manpage and usage.
1615         This fixes http://bugs.debian.org/445481.
1616         Debian patch 417_passwd_warndays.
1617
1618 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1619
1620         * NEWS, src/pwck.c: Remove the preprocessor check SHADOWPWD. The
1621         variable is no more defined (and always assumed).
1622         Debian patch 493_pwck_no_SHADOWPWD.
1623
1624 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1625
1626         * NEWS, src/passwd.c, man/passwd.1.xml: -l/-u options: edit the
1627         shadow account expiry field *in addition* to editing the password
1628         field.  This fixes http://bugs.debian.org/389183.
1629         Debian patch 494_passwd_lock.
1630
1631 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1632
1633         * NEWS, src/newgrp.c: Do not request a password when a user uses
1634         newgrp to switch to her primary group.
1635         This fixes http://bugs.debian.org/396691.
1636         Debian patch 497_newgrp_primary_group.
1637         * src/newgrp.c: Remove a comment which states otherwise.
1638
1639 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1640
1641         * src/login.c: Log an error if the password entry could not be
1642         found (respect LOG_UNKFAIL_ENAB to avoid logging a password). This
1643         fixes the Debian bug http://bugs.debian.org/451521
1644
1645 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1646
1647         * man/useradd.8.xml: -b documenation: Use the same notation for
1648         the -d argument as in the -d documentation.
1649
1650 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1651
1652         * src/useradd.c: Allow the -b option even without the -D option.
1653
1654 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1655
1656         * src/usermod.c: Use the same error message for the below errors.
1657         (option working ONLY if another is specified).
1658
1659 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1660
1661         * src/usermod.c: Make usermod -o and -u work independently of the
1662         argument order.
1663
1664 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1665
1666         * src/usermod.c: Validate that two of the -L, -p, and -U options
1667         are not used at the same time after the parsing of options. -U
1668         used to be allowed after -p or -L, but not before.
1669
1670 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1671
1672         * src/usermod.c: Make usermod -d and -m work independently of the
1673         argument order. Thanks to Justin Pryzby <jpryzby+d@quoininc.com>
1674         for the patch. This fixes http://bugs.debian.org/451518.
1675
1676 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1677
1678         * NEWS, lib/nscd.c: Execute nscd -i instead of using the private
1679         glibc socket to flush the nscd tables. This comes from the RedHat
1680         patch shadow-4.0.16-nscd.c.
1681         * lib/commonio.c: Forbid inheritance of the passwd and group files
1682         to the spawed processes (like nscd). This comes from the RedHat
1683         patch shadow-4.0.17-notInheritFd.patch.
1684         * lib/nscd.h: Update header.
1685
1686 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1687
1688         * src/usermod.c (fail_exit): Add static variables pw_locked,
1689         spw_locked, gr_locked, and sgr_locked to indicate which files must
1690         be unlocked.
1691         * src/usermod.c (open_files, close_files): Open and close the
1692         group files as well as the passwd files. This permit to check if
1693         the group files modification are allowed before writing the passwd
1694         files.
1695         * src/usermod.c (grp_update, update_gshadow, update_group): Do not
1696         return a status code, but call fail_exit() in case of error. The
1697         group files are no more opened and closed in update_gshadow() and
1698         update_group().
1699         * src/usermod.c (main): move the call to grp_update between
1700         open_files and close_files.
1701         * src/usermod.c: Differentiate failure to add a group entry and
1702         failure to add a shadow group entry.
1703
1704 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1705
1706         * src/userdel.c: Differentiate failure to update a group entry and
1707         failure to update a shadow group entry.
1708
1709 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1710
1711         * src/userdel.c, src/usermod.c, src/useradd.c: Inform the user if
1712         out of memory while updating a group database.
1713
1714 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1715
1716         * NEWS, src/usermod.c: Update the group database before flushing
1717         the nscd caches.
1718
1719 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1720
1721         * NEWS, src/userdel.c: Abort if an error is found while updating the
1722         user or group database. No changes will be written in the
1723         databases.
1724
1725 2007-11-17  Nicolas François  <nicolas.francois@centraliens.net>
1726
1727         * src/useradd.c: It is no more needed to check that the user's
1728         groups are specified only once in the group file. This is checked
1729         by gr_update().
1730
1731 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1732
1733         * lib/commonio.c (next_entry_by_name): New function.
1734         * NEWS, lib/commonio.c (commonio_update): When an entry is updated, make
1735         sure that there are no other entry with the same name. This fixes
1736         an infinite loop in userdel and usermod when an (erroneous) group
1737         file contains two entries with the same name.
1738         (https://bugzilla.redhat.com/show_bug.cgi?id=240915)
1739
1740 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1741
1742         * libmisc/salt.c: Make sure the salt string is terminated at the
1743         right place (either 8th, or 11th position).
1744         * NEWS, src/chgpasswd.c, src/chpasswd.c: The protocol + salt does
1745         not need 15 chars. No need for a temporary buffer.
1746         This change the fix committed on 2007-11-10. The salt provided to
1747         pw_encrypt could have been too long.
1748
1749 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1750
1751         * man/fr/fr.po: Fix typo: missing / in <placeholder-1/>. This
1752         caused the gpasswd title to be incomplete in the French manpage.
1753
1754 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1755
1756         * configure.in: Check if the l64a function exists instead of a64l
1757         which we do not use.
1758         * libmisc/salt.c: Add support for uClibc with no l64a().
1759
1760 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1761
1762         * configure.in: Check if the netdb.h header file and the innetgr
1763         function exist.
1764         * src/login_nopam.c, NEWS: Add support for systems with no
1765         innetgr().  On those systems, username with an @ will be treated
1766         like any other username (i.e. lookup in the local database for an
1767         user with an @). Thanks to Mike Frysinger for the patch.
1768
1769 2007-11-16  Nicolas François  <nicolas.francois@centraliens.net>
1770
1771         * src/useradd.c: Indentation fix.
1772
1773 2007-11-14  Nicolas François  <nicolas.francois@centraliens.net>
1774
1775         * src/newgrp.c, NEWS: Declare the child and pid variable at the
1776         beginning of a block. This fixes a compilation issue with gcc 2.95.
1777         The intent is the same as Gentoo's patch shadow-4.0.12-gcc2.patch.
1778
1779 2007-11-14  Nicolas François  <nicolas.francois@centraliens.net>
1780
1781         * src/Makefile, NEWS: Add a suidperms variable. This should ease
1782         the change of permission of suid binaries for distributors (not
1783         recommended).
1784
1785 2007-11-10  Nicolas François  <nicolas.francois@centraliens.net>
1786
1787         * ./, libmisc/, src/, contrib/, doc/, lib/, man/, man/sv/,
1788         man/de/, man/ja/, man/fi/, man/pt_BR/, man/fr/, man/pl/, man/hu/,
1789         man/tr/, man/ru/, man/zh_TW/, man/id/, man/zh_CN/, man/cs/,
1790         man/es/, man/ko/, man/it/, etc/, etc/pam.d/, po/: Restore the
1791         ignore patterns from the previous repository.
1792
1793         * libmisc/*.c, libmisc/*.h, libmisc/getdate.y, shadow.spec.in,
1794         src/*.c, contrib/groupmems.shar, contrib/pwdauth.c,
1795         doc/README.platforms, doc/WISHLIST, doc/console.c.spec.txt,
1796         lib/*.c, lib/*.h, COPYING, man/*.xml, man/sv/*.[1358],
1797         man/de/*.[1358], man/ja/*.[1358], man/fi/*.[1358],
1798         man/fr/*.[1358], man/pt_BR/*.[1358], man/pl/*.[1358],
1799         man/hu/*.[1358], man/tr/*.[1358], man/ru/*.[1358],
1800         man/zh_TW/*.[1358], man/id/*.[1358], man/zh_CN/*.[1358],
1801         man/cs/*.[1358], man/es/*.[1358], man/ko/*.[1358],
1802         man/it/*.[1358], etc/login.access, etc/login.defs, NEWS: Added the
1803         subversion svn:keywords property (Id) for proper identification.
1804
1805 2007-11-10  Nicolas François  <nicolas.francois@centraliens.net>
1806
1807         * man/sv/sv.po, man/de/de.po, man/fr/fr.po, man/pl/pl.po,
1808         man/ru/ru.po, man/it/it.po: Run "make update-po" in the man
1809         directory.
1810
1811         * po/ne.po, po/bs.po, po/cs.po, po/pt_BR.po, po/km.po, po/es.po,
1812         po/eu.po, po/ko.po, po/hu.po, po/sk.po, po/vi.po, po/uk.po,
1813         po/ro.po, po/sq.po, po/ru.po, po/id.po, po/nb.po, po/el.po,
1814         po/gl.po, po/fr.po, po/nl.po, po/pl.po, po/nn.po, po/it.po,
1815         po/dz.po, po/tl.po, po/pt.po, po/ca.po, po/da.po, po/tr.po,
1816         po/sv.po, po/de.po, po/ja.po, po/zh_TW.po, po/he.po, po/fi.po,
1817         po/zh_CN.po: Run "make update-po" in the po directory.
1818
1819 2007-11-10  Nicolas François  <nicolas.francois@centraliens.net>
1820
1821         * NEWS, src/newgrp.c: Don't ask for a password if there are no
1822         group passwords. Just directly give up. This comes from the
1823         Fedora's patch shadow-4.0.13-newgrpPwd.patch, and seems to be the
1824         only part with an effect.
1825
1826 2007-11-10  Nicolas François  <nicolas.francois@centraliens.net>
1827
1828         * NEWS, src/chgpasswd.c, src/chpasswd.c: Fix chpasswd and
1829         chgpasswd stack overflow. Based on Fedora's
1830         shadow-4.0.18.1-overflow.patch.
1831
1832 2007-11-10  Nicolas François  <nicolas.francois@centraliens.net>
1833
1834         * NEWS, src/useradd.c: Allow non numerical group identifier to be
1835         specified with useradd's -g option. Applied Debian patch
1836         397_non_numerical_identifier. Thanks also to Greg Schafer
1837         <gschafer@zip.com.au>.
1838
1839 2007-10-28  Nicolas François  <nicolas.francois@centraliens.net>
1840
1841         * configure.in: Prepare the next release: 4.0.18.2. The gettext
1842         version used for the configuration will be 0.16.
1843
1844 2007-10-28  Nicolas François  <nicolas.francois@centraliens.net>
1845
1846         * po/ja.po: Remove a plural form. nplurals=1 for japanese.
1847         Moreover, msgstr[0] was identical to msgstr[1].
1848
1849 2007-10-27  Nicolas François  <nicolas.francois@centraliens.net>
1850
1851         * libmisc/limits.c, man/limits.5.xml, etc/limits: Apply patch sent
1852         by Justin Bronder <jsbronder@gmail.com>. See Debian bug #442334.
1853         This adds support to 2 new resource limits: max nice value, and
1854         max real time priority. This is only used when shadow is not
1855         compiled with PAM support.
1856
1857 2007-10-27  Nicolas François  <nicolas.francois@centraliens.net>
1858
1859         * man/gpasswd.1.xml: Describe the options separately in the
1860         OPTIONS section. Simplify the synopsis.
1861
1862 2007-10-27  Nicolas François  <nicolas.francois@centraliens.net>
1863
1864         * README, po/Makevars: Update contact information.
1865
1866 2007-10-27  Christian Perrier  <bubulle@debian.org
1867
1868         * src/newgrp.c, src/passwd.c, src/su.c:
1869         No longer 'apologize' to users when they use incorrect passwords
1870         Remove "Sorry" from programs display
1871         Imported from Debian's patch 413_no-sorry-in-passwd and
1872         102_de-fix-sorry
1873         * man/fr/fr.po: fix translation errors. Imported from Debian's
1874         patch 201_fix_man_su_fr and 416_man-fr_newgrp
1875         * man/it/it.po, man/Makefile.am, man/it/Makefile.am:
1876         Use gettext for the Italian man pages translation. Imported from
1877         Debian's patch 202_it_man_uses_gettext. Thanks to Giuseppe
1878         Sacco who contributed the Italian translation.
1879         * man/de/de.po: (nearly) complete German translation of man pages
1880         Imported from Debian's patch 203_de-man-update. Thanks to 
1881         Simon Brandmair
1882         * src/usermod.c: Clarify the online help of usermod for "-a"
1883         Imported from Debian's patch 402-clarify_usermod_usage
1884         * man/shadow.5.xml: fix spelling error. Imported from Debian's
1885         patch 433_shadow.5-typo_312430
1886         * src/su.c: Be up front on the origin of su and mention the GNU
1887         origin. Imported from Debian's patch 438_su_GNU_origin
1888
1889 2007-10-27  Nicolas François  <nicolas.francois@centraliens.net>
1890
1891         * NEWS, po/zh_CN.po: Updated Chinese translation. Imported from
1892         Debian's patch 105_zh_CN. Thanks to Ming Hua for the update.
1893
1894 2007-10-13  Tommi Vainikainen  <thv+debian@iki.fi>
1895
1896         * NEWS, po/fi.po: Updated Finish translation (400t).
1897
1898 2007-10-13  Nicolas François  <nicolas.francois@centraliens.net>
1899
1900         * NEWS, src/su.c: If compiled without PAM support, enforce the
1901         limits from /etc/limits when one of the -, -l, or --login options
1902         is set, even if called by root. Thanks to Justin Bronder.
1903
1904 2007-10-07  Nicolas François  <nicolas.francois@centraliens.net>
1905
1906         * NEWS, Changelog: Convert the Changelog and NEWS files to UTF-8
1907         (it was partially ISO-8859-2).
1908
1909 2007-02-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
1910
1911         * NEWS, man/groupadd.8.xml, man/groupmod.8.xml, man/login.1.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml:
1912         groupadd.8, groupmod.8, login.1, useradd.8, userdel.8, usermod.8: grammar
1913         mistakes and other correctstions (by Schulenberg <bensberg@justemail.net>).
1914
1915 2007-01-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
1916
1917         * NEWS, src/usermod.c:
1918         fixed handle -a option in usermod (by Benno Schulenberg <bensberg@justemail.net>).
1919
1920 2006-12-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
1921
1922         * man/sv/sv.po:
1923         more UTF8 fixe (by Mikael Magnusson <mikma@users.sourceforge.net>).
1924
1925         * man/sv/sv.po:
1926         UTF8 fixes (by Mikael Magnusson <mikma@users.sourceforge.net>).
1927
1928 2006-11-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
1929
1930         * man/pl/Makefile.am, man/pl/chgpassw.8, man/pl/chpasswd.8, man/pl/pl.po:
1931         translation chpasswd.8 and chgpassw.8 finished.
1932
1933 2006-11-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
1934
1935         * man/pl/pl.po: resolve fuzzy entries.
1936
1937         * contrib/adduser.c, contrib/groupmems.shar, po/it.po, src/groupmems.c, src/usermod.c, man/chfn.1.xml, man/chsh.1.xml, man/de/de.po, man/fr/fr.po, man/groupmems.8.xml, man/passwd.1.xml, man/pl/pl.po, man/ru/ru.po, man/shadow.3.xml, man/su.1.xml, man/sv/sv.po:
1938         spelling fixes 's/super user/superuser/' (by Benno Schulenberg <bensberg@justemail.net>).
1939
1940         * man/sv/sv.po, man/de/de.po, man/fr/fr.po, man/pl/pl.po, man/ru/ru.po:
1941         run "make update-po".
1942
1943         * man/newusers.8.xml, man/su.1.xml:
1944         fixed wrong word, a few typos, some grammar mistakes, and puts in a comma here
1945         and there for clarity (by Benno Schulenberg <bensberg@justemail.net>).
1946
1947         * man/pl/groupmod.8, man/pl/chage.1, man/pl/chsh.1, man/pl/lastlog.8, man/pl/vipw.8:
1948         regenerated.
1949
1950         * man/de/de.po: run "make update-po".
1951
1952         * man/Makefile.am:
1953         added de to LINGUAS but man/de/de.po still need many work.
1954
1955 2006-11-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
1956
1957         * src/useradd.c: indent code.
1958
1959         * NEWS, src/useradd.c:
1960         improved auditing support (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211659).
1961
1962 2006-11-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
1963
1964         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
1965         run "make update-po".
1966
1967         * NEWS, po/nl.po:
1968         updated (by cobaco (aka Bart Cornelis) <cobaco@skolelinux.no>).
1969
1970         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/sv/sv.po:
1971         "make update-po".
1972
1973 2006-11-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
1974
1975         * man/su.1.xml:
1976         added sg(1) to the SEE ALSO section (Debian Bug#396690).
1977
1978 2006-10-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
1979
1980         * man/newusers.8.xml: clarify pw_gid fileld content description.
1981
1982         * man/it/Makefile.am, man/sv/Makefile.am:
1983         s/man_nonpam/man_nopam/ (merged 498_man_nonpam_undefined Debian patch).
1984
1985         * po/nl.po:
1986         fixed https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=212892
1987
1988 2006-10-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
1989
1990         * man/newusers.8.xml: there is no pw_age fileld in passwd.
1991
1992         * man/fr/fr.po:
1993         Fix an error in the passwd.1 French translation (fixed Debian bug #395537).
1994
1995         * man/chfn.1.xml, man/chgpasswd.8.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/fr/fr.po, man/gpasswd.1.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/id.1.xml, man/login.1.xml, man/newgrp.1.xml, man/newusers.8.xml, man/nologin.8.xml, man/passwd.1.xml, man/pl/pl.po, man/pwck.8.xml, man/pwconv.8.xml, man/su.1.xml, man/sulogin.8.xml, man/sv/sv.po, man/vipw.8.xml:
1996         cleanups on begin DESCRIPTION section.
1997
1998         * man/pl/pl.po: typos.
1999
2000 2006-10-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
2001
2002         * po/pl.po: cleanups.
2003
2004 2006-10-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
2005
2006         * man/pl/pl.po: more translations.
2007
2008         * NEWS:
2009         UTF-8 corrections (by Benno Schulenberg <bensberg@justemail.net>).
2010
2011 2006-10-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
2012
2013         * man/groupdel.8.xml: added description for exit code 6.
2014
2015 2006-08-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
2016
2017         * man/de/de.po: copy & paste some msgid to msgstr.
2018
2019         * man/de/de.po:
2020         kill some fuzzy (by Nicolas François <nicolas.francois@centraliens.net>).
2021
2022 2006-08-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
2023
2024         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/sv/sv.po, man/passwd.1.xml:
2025         s/change password/password change/ in passwd(1) (by Simon Brandmair <sbrandmair@gmx.net>).
2026
2027         * man/de/de.po:
2028         initial version based on partial translations only for passwd(1) by
2029         Simon Brandmair <sbrandmair@gmx.net>.
2030
2031         * NEWS, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/useradd.c, src/userdel.c, src/usermod.c:
2032         flush nscd cashes after close /etc/{group,passwd} files.
2033
2034 2006-08-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
2035
2036         * po/tl.po: updated (by Eric Pareja <xenos@upm.edu.ph>).
2037
2038 2006-08-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
2039
2040         * NEWS, po/ja.po: updated (by Takeo Nakano <nakano@webmasters.gr.jp>).
2041
2042 2006-08-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
2043
2044         * man/fr/Makefile.am:
2045         removed whitespaces following trailing backslashes.
2046
2047         * NEWS, configure.in: release 4.0.18.1.
2048
2049         * man/Makefile.am, man/fr/Makefile.am, man/it/Makefile.am, man/ja/Makefile.am, man/pl/Makefile.am, man/ru/Makefile.am, man/sv/Makefile.am, NEWS:
2050         fixed missing man pages in dist tar ball necessary on build when PAM is disabled.
2051
2052         * NEWS, src/groupmems.c:
2053         fixed groupmems compilation when PAM is disabled (by Johannes Winkelmann <jw@smts.ch>).
2054
2055         * configure.in:
2056         typo s/followig/following/ (by Johannes Winkelmann <jw@smts.ch>).
2057
2058 2006-08-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
2059
2060         * NEWS: release date corrected.
2061
2062         * NEWS, src/su.c:
2063         fixed set enviroment too early when using PAM, so move it to !USE_PAM
2064         (patch submitted by Mike Frysinger <vapier@gentoo.org>).
2065
2066 2006-07-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
2067
2068         * man/fr/chage.1, man/fr/chfn.1, man/fr/chpasswd.8, man/fr/chsh.1, man/fr/expiry.1, man/fr/faillog.5, man/fr/faillog.8, man/fr/gpasswd.1, man/fr/groupadd.8, man/fr/groupdel.8, man/fr/groupmod.8, man/fr/groups.1, man/fr/grpck.8, man/fr/gshadow.5, man/fr/lastlog.8, man/fr/limits.5, man/fr/login.1, man/fr/login.access.5, man/fr/login.defs.5, man/fr/logoutd.8, man/fr/newgrp.1, man/fr/newusers.8, man/fr/passwd.1, man/fr/passwd.5, man/fr/porttime.5, man/fr/pwck.8, man/fr/pwconv.8, man/fr/sg.1, man/fr/shadow.3, man/fr/shadow.5, man/fr/su.1, man/fr/suauth.5, man/fr/useradd.8, man/fr/userdel.8, man/fr/usermod.8, man/fr/vipw.8, NEWS:
2069         fr man pages are now up to date.
2070
2071         * man/fr/fr.po:
2072         more updates for 4.0.18 (by Nicolas François <nicolas.francois@centraliens.net>).
2073
2074         * man/fr/fr.po:
2075         updated for 4.0.18 (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
2076
2077 2006-07-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
2078
2079         * po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po:
2080         updated.
2081
2082         * src/useradd.c, src/usermod.c:
2083         fixed UID/GID overflow (fixed http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=198920).
2084         Fixed expiredate/inactive/mindays/warndays/maxdays overflow (simillar to RH#198920).
2085
2086         * src/passwd.c:
2087         fixed inactive/mindays/warndays/maxdays overflow (similar to RH#198920).
2088
2089         * src/groupadd.c, src/groupmod.c:
2090         fixed GID overflow (fixed http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=198920).
2091
2092 2006-07-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
2093
2094         * src/.cvsignore: groupmems added.
2095
2096 2006-07-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
2097
2098         * po/fr.po:
2099         updated for 4.0.18 (by ean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
2100
2101         * po/uk.po: break lines longer than 80 cols and add missing \n.
2102
2103         * po/uk.po:
2104         updated for 4.0.18 (by Eugeniy Meshcheryakov <eugen@univ.kiev.ua>).
2105
2106         * man/pl/pl.po, man/ru/ru.po, man/sv/sv.po, man/chgpasswd.8.xml, man/chpasswd.8.xml, man/fr/fr.po:
2107         s/instead DES/instead of DES/
2108
2109         * NEWS: sv man pages are partially translated.
2110
2111 2006-07-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
2112
2113         * src/groupmems.c: fix compilation warnings.
2114
2115         * po/ko.po: use \t.
2116
2117         * po/nl.po: break lines longer than 80 cols and add missing \n.
2118
2119 2006-07-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
2120
2121         * man/ru/faillog.5: regenerated.
2122
2123         * po/ko.po: updated for 4.0.18 (by Changwoo Ryu <cwryu@debian.org>).
2124
2125 2006-07-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
2126
2127         * man/faillog.5.xml, man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/sv/sv.po:
2128         added <refmiscinfo class="sectdesc"> tag for faillog.5.xml.
2129
2130         * man/sv/Attic/grupper.1: removed.
2131
2132         * man/sv/Makefile.am, man/sv/chage.1, man/sv/chfn.1, man/sv/chgpasswd.8, man/sv/chpasswd.8, man/sv/chsh.1, man/sv/expiry.1, man/sv/faillog.5, man/sv/faillog.8, man/sv/gpasswd.1, man/sv/groupadd.8, man/sv/groupdel.8, man/sv/groupmems.8, man/sv/groupmod.8, man/sv/groups.1, man/sv/grpck.8, man/sv/gshadow.5, man/sv/lastlog.8, man/sv/limits.5, man/sv/login.1, man/sv/login.access.5, man/sv/login.defs.5, man/sv/logoutd.8, man/sv/newgrp.1, man/sv/newusers.8, man/sv/nologin.8, man/sv/passwd.1, man/sv/passwd.5, man/sv/porttime.5, man/sv/pwck.8, man/sv/pwconv.8, man/sv/sg.1, man/sv/shadow.3, man/sv/shadow.5, man/sv/su.1, man/sv/suauth.5, man/sv/sv.po, man/sv/useradd.8, man/sv/userdel.8, man/sv/usermod.8, man/sv/vipw.8:
2133         corrected text charset and other minor cleanups (by Daniel Nylander <info@danielnylander.se>).
2134
2135         * po/tr.po: break lines longer than 80 cols.
2136
2137         * po/tr.po:
2138         updated for 4.0.18 (by Mehmet TURKER <mturker@innova.com.tr>).
2139
2140         * configure.in, man/Makefile.am, man/sv/Makefile.am:
2141         fixes for "make {dist|distchec}" and sv man pages.
2142
2143         * man/sv/Attic/grupper.1, man/sv/groupmems.8, man/sv/groupmod.8, man/sv/grpck.8, man/sv/grpconv.8, man/sv/grpunconv.8, man/sv/gshadow.5, man/sv/lastlog.8, man/sv/limits.5, man/sv/login.1, man/sv/login.access.5, man/sv/login.defs.5, man/sv/logoutd.8, man/sv/newgrp.1, man/sv/newusers.8, man/sv/nologin.8, man/sv/passwd.1, man/sv/passwd.5, man/sv/porttime.5, man/sv/pwck.8, man/sv/pwconv.8, man/sv/pwunconv.8, man/sv/sg.1, man/sv/shadow.3, man/sv/shadow.5, man/sv/su.1, man/sv/suauth.5, man/sv/sv.po, man/sv/useradd.8, man/sv/userdel.8, man/sv/usermod.8, man/sv/vigr.8, man/sv/vipw.8, NEWS, man/Makefile.am, man/sv/Makefile.am, man/sv/chage.1, man/sv/chfn.1, man/sv/chgpasswd.8, man/sv/chpasswd.8, man/sv/chsh.1, man/sv/expiry.1, man/sv/faillog.5, man/sv/faillog.8, man/sv/getspnam.3, man/sv/gpasswd.1, man/sv/groupadd.8, man/sv/groupdel.8:
2144         full sv man pages set added (by Daniel Nylander <info@danielnylander.se>).
2145         This man pages are translated using new XML/xml2po/gettext infrastructure.
2146
2147         * po/pl.po: updated for 4.0.18.
2148
2149 2006-07-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
2150
2151         * po/pt.po:
2152         updated for 4.0.18 (by Miguel Figueiredo <mfigueiredo@gmail.com>).
2153
2154         * po/gl.po, NEWS:
2155         updated for 4.0.18 (by Jacobo Tarrio <jacobo@tarrio.org>).
2156
2157         * NEWS, po/eu.po:
2158         updated for 4.0.18 (by Piarres Beobide <pi@beobide.net>).
2159
2160         * man/ru/chsh.1, man/ru/faillog.5, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/ru.po, man/ru/su.1, man/ru/useradd.8, man/ru/usermod.8, man/ru/vipw.8, NEWS, po/ru.po:
2161         updated for 4.0.18 (by Yuri Kozlov <kozlov.y@gmail.com>).
2162
2163         * po/vi.po, NEWS:
2164         updated for 4.0.18 (by Clytie Siddall <clytie@riverland.net.au>).
2165
2166         * NEWS, po/cs.po:
2167         updated for 4.0.18 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
2168
2169         * NEWS, po/sv.po:
2170         updated for 4.0.18 (by Daniel Nylander <info@danielnylander.se>).
2171
2172         * NEWS, po/ca.po:
2173         updated for 4.0.18 (by Guillem Jover <guillem@debian.org>).
2174
2175 2006-07-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
2176
2177         * po/hu.po: cleanups.
2178
2179         * NEWS, po/da.po:
2180         updated for 4.0.18 (by Claus Hindsgaul <claus.hindsgaul@gmail.com>).
2181
2182         * po/hu.po, NEWS: updated for 4.0.18 (by SZERVÁC Attila <sas@321.hu>).
2183
2184         * NEWS: typos.
2185
2186         * man/ru/ru.po, man/fr/fr.po, man/pl/pl.po: run "make update-po".
2187
2188         * man/su.1.xml: fixes in <refsynopsisdiv>.
2189
2190         * src/groupmems.c: indent soutrce code.
2191
2192         * src/groupmems.c: use shadow Copyright.
2193
2194         * po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/POTFILES.in, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po:
2195         added src/groupmems.c to POTFILES.in.
2196
2197         * NEWS, etc/pam.d/Makefile.am, etc/pam.d/groupmems, man/Makefile.am, man/groupmems.8.xml, src/Makefile.am, src/groupmems.c:
2198         groupmems rewrited for use PAM and getopt_long() nad now it is enabled
2199         for build and install (patch by George Kraft <gk4@swbell.net>).
2200
2201         * NEWS, configure.in: start prepare for 4.0.18.
2202
2203 2006-07-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
2204
2205         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
2206         run "make update-po" and some cleanups (added missing \n and use tabs instead spaces).
2207
2208         * src/su.c: s#[login]#[LOGIN]# in help message.
2209
2210         * man/useradd.8.xml:
2211         added missing --<foo> long options names in "Changing the default values" section.
2212
2213         * po/tr.po: updated (by Murat Şenel <muratasenel@gmail.com>).
2214
2215 2006-07-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
2216
2217         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po: updated.
2218
2219         * man/useradd.8.xml: added newusers(8) to SEE ALSO section.
2220
2221         * etc/login.defs:
2222         removed GETPASS_ASTERISKS (patch by Mike Frysinger <vapier@gentoo.org>).
2223
2224 2006-07-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
2225
2226         * NEWS, man/pl/chsh.1, man/pl/pl.po: pl chage(1): translation finished.
2227
2228         * NEWS:
2229         s#fix by Mike Frysinger <vapier@gentoo.org>)#(patch by Ulrich Mueller <ulm@kph.uni-mainz.de>; http://bugs.gentoo.org/139966#
2230
2231         * NEWS, configure.in:
2232         S/Key: removed assign getpass() to libshadow_getpass() on autoconf level
2233         (fix by Mike Frysinger <vapier@gentoo.org>).
2234
2235 2006-07-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
2236
2237         * man/vipw.8.xml: make options <replaceable> in SYNOPSIS.
2238
2239         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/groupadd.c:
2240         s/group/GROUP/ in groupadd help message.
2241
2242         * src/su.c (main):
2243         move **envcp declaration to #ifdef USE_PAM (fixed warning about unused
2244         variable when shadow is builded with PAM didabled).
2245
2246         * man/pl/pl.po, NEWS, man/pl/chage.1: pl chage(1) translation finished.
2247
2248         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po: updated.
2249
2250         * man/chsh.1.xml: updated after rewrite chsh for use getopt_long().
2251
2252         * po/pl.po: kill fuzzy.
2253
2254 2006-07-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
2255
2256         * po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/chsh.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po:
2257         one \t more in help message.
2258
2259         * po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po, po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po:
2260         updated.
2261
2262         * NEWS, src/chsh.c: chsh rewrited for use getopt_long().
2263
2264 2006-07-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
2265
2266         * man/pl/groupmod.8, man/pl/pl.po: finish translation groupmod(8).
2267
2268         * man/fr/fr.po, man/groupmod.8.xml, man/pl/groupmod.8, man/pl/pl.po, man/ru/ru.po:
2269         cleanups in groupmod(8).
2270
2271         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/usermod.8.xml, src/usermod.c, NEWS:
2272         back to previouse usermod -a option sematics and clarify -a behavior
2273         on documentation level (by Greg Schafer <gschafer@zip.com.au>).
2274
2275         * man/fr/fr.po, man/groupmod.8.xml, man/pl/pl.po, man/ru/ru.po:
2276         updated groupmod man page.
2277
2278 2006-07-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
2279
2280         * src/groupmod.c: too many \t in help message.
2281
2282         * man/ru/chage.1, man/ru/passwd.1, man/ru/ru.po, man/chage.1.xml, man/fr/fr.po, man/passwd.1.xml, man/pl/pl.po:
2283         updated.
2284
2285         * po/nb.po, po/ne.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/dz.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/km.po, po/ko.po:
2286         run "make update-po".
2287
2288         * src/groupmod.c: cleunps in help message.
2289
2290         * src/chage.c: s/user/\[LOGIN\]/ in help message.
2291
2292         * src/passwd.c: s/\[login\]/\[LOGIN\]/ in help message.
2293
2294         * NEWS, src/groupmod.c: groupmod rewrited for use getopt_log().
2295
2296 2006-07-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
2297
2298         * po/sv.po:
2299         added missing \n in help messages and few other minor cleanups.
2300
2301         * NEWS, po/sv.po:
2302         updated for 4.0.17 (by Daniel Nylander <info@danielnylander.se>).
2303
2304         * NEWS: 4.0.17 release date i 10-07-2006.
2305
2306         * NEWS, libmisc/copydir.c:
2307         fixed segfault usermod/userdel on remove home directory when it can't
2308         be removed; for example when it is /dev/null (fixed http://bugs.gentoo.org/139148).
2309
2310         * src/login.c, src/logoutd.c, src/userdel.c, libmisc/limits.c:
2311         remove USER_PROCESS conditionsi (code simplifications).
2312
2313 2006-07-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
2314
2315         * po/km.po: kill all fuzzy (Sokhem <khoemsokhem@khmeros.info>).
2316
2317 2006-07-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
2318
2319         * po/de.po: kill fuzzy (by Holger Wansing <linux@wansing-online.de>).
2320
2321 2006-07-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
2322
2323         * man/Makefile.am: removed duplicated all target.
2324
2325         * NEWS, po/LINGUAS, po/ne.po:
2326         new Nepali translation (by Paras Pradhan <pradhanparas@gmail.com>).
2327
2328         * NEWS, po/LINGUAS, po/dz.po: new Dzongkha translation.
2329
2330         * NEWS, po/de.po:
2331         updated for 4.0.17 (by Holger Wansing <linux@wansing-online.de>).
2332
2333         * NEWS, po/nl.po:
2334         updated for 4.0.17 (by "cobaco (aka Bart Cornelis)" <cobaco@skolelinux.no>)
2335
2336 2006-06-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
2337
2338         * po/ko.po: cleanups (by darehanl <darehanl@gmail.com>).
2339
2340         * src/usermod.c: fixes in getopt_long() optstring: s/a/a:/ and added h.
2341
2342         * src/faillog.c:
2343         fixed long_options[] entries: s/no_argument/required_argument/ for lock-secs,
2344         maximum, time and user options.
2345
2346         * NEWS, configure.in:
2347         improved SELinux detection on autoconf level (based on patch by
2348         Dan Yefimov <dan@D00M.lightwave.net.ru>).
2349
2350         * po/ro.po, NEWS:
2351         updated for 4.0.17 (by Sorin Batariuc <sorin@bonbon.net>).
2352
2353 2006-06-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
2354
2355         * NEWS: cleanups.
2356
2357         * man/pl/pl.po: more translations for chage(1).
2358
2359         * TODO: remove done things.
2360
2361         * NEWS, lib/Attic/getpass.c, lib/Makefile.am, lib/getdef.c, lib/pwauth.c, po/POTFILES.in:
2362         removed using private implementatuon getpass() libc function (now getpass() is
2363         used also when S/KEY support is enabled).
2364
2365         * NEWS, src/Makefile.am: move nologin do $(sbindir).
2366
2367         * man/pl/pl.po: more work.
2368
2369         * man/pl/pl.po: more translations.
2370
2371         * po/pl.po: s/KEY=VALUE/KLUCZ=WARTOŚĆ/
2372
2373         * po/pl.po: s/SEC/SEK/
2374
2375         * src/chpasswd.c: added missing #include "exitcodes.h".
2376
2377         * src/chpasswd.c: s/exit (1)/exit (E_USAGE)/
2378
2379         * man/Makefile.am:
2380         move all current i18n man pages automation inside "if ENABLE_REGENERATE_MAN .. endif".
2381
2382         * man/Makefile.am:
2383         add an error message so people don't have to go digging through
2384         source to find out what's up (by Mike Frysinger <vapier@gentoo.org>).
2385
2386         * NEWS, man/ru/chage.1, man/ru/chfn.1, man/ru/chgpasswd.8, man/ru/chpasswd.8, man/ru/chsh.1, man/ru/expiry.1, man/ru/faillog.5, man/ru/faillog.8, man/ru/gpasswd.1, man/ru/groupadd.8, man/ru/groupdel.8, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/groups.1, man/ru/grpck.8, man/ru/gshadow.5, man/ru/lastlog.8, man/ru/limits.5, man/ru/login.1, man/ru/login.access.5, man/ru/login.defs.5, man/ru/logoutd.8, man/ru/newgrp.1, man/ru/newusers.8, man/ru/nologin.8, man/ru/passwd.1, man/ru/passwd.5, man/ru/porttime.5, man/ru/pwck.8, man/ru/pwconv.8, man/ru/ru.po, man/ru/sg.1, man/ru/shadow.3, man/ru/shadow.5, man/ru/su.1, man/ru/suauth.5, man/ru/useradd.8, man/ru/userdel.8, man/ru/usermod.8, man/ru/vipw.8:
2387         updated ru man pages (regenerated from man/ru/ru.po -> man/ru/*xml -> roff).
2388
2389         * NEWS, po/ru.po:
2390         updated for 4.0.17 (by Yuri Kozlov <kozlov.y@gmail.com>).
2391
2392         * NEWS, po/LINGUAS, po/km.po:
2393         new km translation (Sokhem <khoemsokhem@khmeros.info>).
2394
2395         * po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, src/groupadd.c:
2396         cleanups in groupadd help message.
2397
2398         * NEWS, po/nb.po:
2399         updated for 4.0.17 (by Bjørn Steensrud <bjornst@powertech.no>).
2400
2401         * NEWS, po/da.po:
2402         updated for 4.0.17 (by Claus Hindsgaul <claus.hindsgaul@gmail.com>).
2403
2404         * po/pl.po:
2405         s/twóş/twĂłrz/ (fix by Michał Łomnicki <michal.lomnicki@gmail.com>).
2406
2407         * NEWS, po/pt.po:
2408         updated for 4.0.17 (by Miguel Figueiredo <mfigueiredo@gmail.com>).
2409
2410         * NEWS, po/vi.po:
2411         updated for 4.0.17 (by Clytie Siddall <clytie@riverland.net.au>).
2412
2413         * NEWS, po/cs.po:
2414         updated for 4.0.17 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
2415
2416         * po/eu.po, po/fr.po, po/gl.po, po/pl.po:
2417         Project-Id-Version: shadow 4.0.17
2418
2419         * NEWS, po/sk.po:
2420         updated for 4.0.17 (by Peter Mann <Peter.Mann@tuke.sk>).
2421
2422         * NEWS, po/ko.po:
2423         updated for 4.0.17 (by Changwoo Ryu <cwryu@debian.org>).
2424
2425 2006-06-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
2426
2427         * NEWS, configure.in: schedule release 40.17 on 26-06-2006.
2428
2429         * src/useradd.c:
2430         adjust last fix for leave some fix mail spool creation after rewrite internal
2431         configuration API.
2432
2433         * src/useradd.c, NEWS:
2434         fixed mail spool file creation (bug cached by Frans Pop <elendil@planet.nl>,
2435         fixed http://bugs.debian.org/374705).
2436
2437 2006-06-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
2438
2439         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/chage.c, src/chgpasswd.c, src/chpasswd.c, src/faillog.c, src/groupadd.c, src/lastlog.c, src/passwd.c, src/su.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c:
2440         better looking help messages output. Added one empty line at end of help message.
2441
2442         * po/ru.po, po/sk.po, po/sv.po, po/tl.po, po/uk.po, po/ro.po, po/pt_BR.po:
2443         break help messages lines before col 80.
2444
2445         * man/pl/pl.po: more work on usermod.
2446
2447         * po/pl.po: cleanups.
2448
2449 2006-06-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
2450
2451         * man/pl/vipw.8:
2452         regenerated using fixed DocBook XSL Stylesheets v1.70.1 (I must submit my
2453         fixes common/pl.xml do DocBook XSL Stylesheets mantainer).
2454
2455         * man/fr/fr.po, man/ru/ru.po: updated.
2456
2457         * man/pl/lastlog.8, man/pl/pl.po: finish translate lastlog(8).
2458
2459         * man/lastlog.8.xml: improved NOTE section content.
2460
2461         * po/pl.po: iprove lastlog help message.
2462
2463         * man/fr/fr.po, man/lastlog.8.xml, man/pl/pl.po, man/ru/ru.po:
2464         Better lastlog short description. Now it is:
2465         lastlog - reports the most recent login of all users or of a given user
2466
2467         * man/Makefile.am, man/fr/fr.po, man/lastlog.8.xml, man/pl/pl.po, man/ru/ru.po:
2468         Fixed CAVEATS section (what the hell is mmdf ? :)
2469
2470         * man/ru/ru.po, NEWS, man/faillog.5.xml, man/fr/fr.po, man/pl/pl.po:
2471         added missing information about fail_locktime element of faillog struct
2472         in faillog(5) man page (by Thorsten Kukuk <kukuk@suse.de>).
2473
2474 2006-06-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
2475
2476         * man/ru/chage.1, man/ru/chfn.1, man/ru/chgpasswd.8, man/ru/chpasswd.8, man/ru/chsh.1, man/ru/expiry.1, man/ru/faillog.5, man/ru/faillog.8, man/ru/gpasswd.1, man/ru/groupadd.8, man/ru/groupdel.8, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/groups.1, man/ru/grpck.8, man/ru/gshadow.5, man/ru/lastlog.8, man/ru/limits.5, man/ru/login.1, man/ru/login.access.5, man/ru/login.defs.5, man/ru/logoutd.8, man/ru/newgrp.1, man/ru/newusers.8, man/ru/nologin.8, man/ru/passwd.1, man/ru/passwd.5, man/ru/porttime.5, man/ru/pwck.8, man/ru/pwconv.8, man/ru/sg.1, man/ru/shadow.3, man/ru/shadow.5, man/ru/su.1, man/ru/suauth.5, man/ru/useradd.8, man/ru/userdel.8, man/ru/usermod.8, man/ru/vipw.8:
2477         fully regenerated man pages.
2478
2479         * man/Makefile.am:
2480         hack for generate translated xml files with lang="<lang> in <refentry> tag.
2481         Now is possible testing correctnes of XSLT sheets languages definition.
2482
2483 2006-06-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
2484
2485         * NEWS, po/eu.po: updated (by Piarres Beobide <pi@beobide.net>).
2486
2487 2006-06-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
2488
2489         * po/zh_TW.po, po/da.po, po/el.po, po/es.po, po/eu.po, po/id.po, po/ja.po, po/ko.po, po/nb.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/tr.po, po/uk.po, po/zh_CN.po:
2490         s/ \\n"/\\n"/ in translated strings.
2491
2492         * man/pl/pl.po: more translations for usermod.
2493
2494         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/usermod.8.xml:
2495         added <command> tags for at and crontab.
2496
2497         * man/fr/fr.po, man/pl/pl.po, man/ru/ru.po, man/usermod.8.xml:
2498         remove /etc/login.defs from FILES section.
2499
2500         * po/gl.po: updated (by Jacobo Tarrio <jtarrio@trasno.net>).
2501
2502         * po/fr.po: updated (by Christian Perrier <bubulle@kheops.frmug.org>).
2503
2504         * po/pl.po:
2505         updated usermod help message and fixed few other things introduced during
2506         copy&paset from useradd help message.
2507
2508         * po/vi.po, po/zh_CN.po, po/zh_TW.po, src/usermod.c, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/bs.po:
2509         fixes in help message:
2510         s/login/LOGIN/
2511         s/new login directory/new home directory/
2512         s/new initial login group/new primary group/
2513         s/tlist of supplementary/new tlist of supplementary/
2514         s/LOGIN/NEW_LOGIN/
2515
2516         * po/da.po, po/id.po, po/nb.po, po/nl.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po:
2517         cleanups in usermod help message.
2518
2519         * po/es.po, po/eu.po, po/fi.po, po/tl.po: cleanups.
2520
2521         * po/nb.po, po/nl.po, po/pt.po, po/uk.po, po/cs.po, po/el.po, po/eu.po, po/fi.po, po/hu.po:
2522         s/\\\t /\\\t/
2523
2524 2006-06-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
2525
2526         * NEWS, configure.in, man/Makefile.am:
2527         reverte using docbook.sourceforge.net in XSLT url.
2528
2529         * po/pl.po: cleanups.
2530
2531 2006-06-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
2532
2533         * man/Makefile.am:
2534         improved gen-xmls target: now this target generates only missing xml files.
2535
2536 2006-06-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
2537
2538         * NEWS, po/sk.po:
2539         updated for 4.0.16 (by Peter Mann <Peter.Mann@tuke.sk>).
2540
2541         * NEWS, po/es.po:
2542         updated for 4.0.16 (by Ruben Porras <nahoo82@gmail.com>).
2543
2544         * NEWS, po/fi.po:
2545         updated for 4.0.16 (by Tommi Vainikainen <thv+debian@iki.fi>).
2546
2547         * NEWS, man/cs/Makefile.am, man/cs/groupmems.8, man/cs/groupmod.8, man/cs/grpck.8, man/cs/gshadow.5:
2548         new cs man pages: groupmems(8), groupmod(8), grpck(8), gshadow(5)
2549         (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
2550
2551         * NEWS, po/cs.po:
2552         updated for 4.0.16 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
2553
2554 2006-06-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
2555
2556         * NEWS, configure.in, man/Makefile.am:
2557         regenerate roff man pages using docbook-style-xsl-1.70.1.
2558         This version uses new base URL: http://docbook.sf.net/release/xsl/current/
2559
2560         * man/.cvsignore: shadow-man-pages.pot added.
2561
2562         * man/Makefile.am:
2563         added temporary gen-xmls targed and dependencies beetwen .pot and .po files.
2564
2565         * man/chgpasswd.8.xml: removed <!DOCTYPE> tag (isn't neccessary).
2566
2567 2006-05-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
2568
2569         * man/pl/pl.po: chage(1) translation.
2570
2571         * man/pl/Attic/chage.1.xml: removed.
2572
2573         * man/chage.1.xml, man/fr/fr.po, man/pl/pl.po, man/ru/ru.po:
2574         chage requires shadow access and can't work without this.
2575
2576         * po/da.po:
2577         updated for 4.0.16 (by Claus Hindsgaul <claus.hindsgaul@gmail.com>).
2578
2579         * po/pl.po: s/_DAYS/_DNI/
2580
2581 2006-05-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
2582
2583         * NEWS: s/OWL/Owl/
2584
2585         * NEWS: new release date for 4.0.16 is 05-06-2006.
2586
2587         * NEWS: fixed last usermod changes comment. Current is:
2588         better fix for old CERT VU#312962 (which was fixed in shadow 4.0.8):
2589         fixed forgoten checking of the return value from fchown() before
2590         proceeding with the fchmod() (based on Owl patch prepared by
2591         Rafal Wojtczuk <nergal@owl.openwall.com>)
2592
2593         * src/useradd.c (create_mail):
2594         move checking create_mail_spool is "yes" on top function.
2595
2596         * man/pl/pl.po: cleanups.
2597
2598         * po/fr.po:
2599         plugged fuzzy (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
2600
2601         * po/fr.po:
2602         updated (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
2603
2604 2006-05-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
2605
2606         * man/Makefile.am:
2607         simplifications in update-po target and fixes in dist-po-files target.
2608
2609         * NEWS, po/eu.po:
2610         updated for 4.0.16 (by Piarres Beobide <pi@beobide.net>).
2611
2612 2006-05-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
2613
2614         * man/ru/ru.po, NEWS, man/chfn.1.xml, man/faillog.8.xml, man/fr/fr.po, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupmems.8.xml, man/limits.5.xml, man/login.1.xml, man/login.defs.5.xml, man/newgrp.1.xml, man/passwd.1.xml, man/passwd.5.xml, man/pl/pl.po, man/su.1.xml:
2615         bunch of cleanups in chfn(1), faillog(8), gpasswd(1), groupadd(8),
2616         groupmems(8), limits(5), login(1), login.defs(5), newgrp(1), passwd(1),
2617         passwd(5) and su(1) (by Yuri Kozlov <kozlov.y@gmail.com>).
2618
2619         * man/Makefile.am, man/ru/ru.po: added ru to LINGUAS.
2620
2621         * po/ru.po: updated for 4.0.16 (by Yuri Kozlov <kozlov.y@gmail.com>).
2622
2623 2006-05-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
2624
2625         * man/fr/fr.po, man/pl/pl.po, man/chage.1.xml, man/passwd.1.xml:
2626         s/-n/-m/ in passwd(1). Improved -m, --mindays description in chage(1) and passwd(1).
2627         More pl translations.
2628
2629         * po/vi.po: updated (by Clytie Siddall <clytie@riverland.net.au>).
2630
2631         * NEWS, po/hu.po:
2632         updated for 4.0.16 (by Gabor Kelemen <kelemeng@gnome.hu>).
2633
2634 2006-05-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
2635
2636         * man/cs/Makefile.am, man/it/Makefile.am, man/ru/Makefile.am:
2637         id and sulogin executables are not installed by "make install",
2638         but a few translated man pages are still installed.
2639         (patch by Lasse Collin <lasse.collin@tukaani.org>)
2640
2641 2006-05-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
2642
2643         * NEWS, po/vi.po:
2644         updates for 4.0.16 (by Clytie Siddall <clytie@riverland.net.au>).
2645
2646         * po/gl.po: updated for 4.0.16 (by Jacobo Tarrio <jtarrio@debian.org>).
2647
2648 2006-05-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
2649
2650         * po/pl.po: more cleanups.
2651
2652         * po/fr.po:
2653         updated for 4.0.16 (by Christian Perrier <bubulle@kheops.frmug.org>).
2654
2655         * man/chage.1.xml, man/chfn.1.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/fr/fr.po, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/login.1.xml, man/login.access.5.xml, man/logoutd.8.xml, man/newgrp.1.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/pl/pl.po, man/pl/vipw.8, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/sg.1.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml:
2656         use common style in FILES sections.
2657
2658         * man/fr/fr.po, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/id.1.xml, man/limits.5.xml, man/login.access.5.xml, man/pl/pl.po, man/suauth.5.xml, man/userdel.8.xml, man/usermod.8.xml, man/faillog.5.xml:
2659         begin <refpurpose> text from lowercase.
2660
2661         * man/fr/fr.po, man/pl/pl.po, man/pwconv.8.xml, man/vipw.8.xml:
2662         remove "." from <refpurpose>.
2663
2664         * po/pl.po: cleanups.
2665
2666         * po/pl.po: typo.
2667
2668         * man/pl/.cvsignore, man/pt_BR/.cvsignore, man/ru/.cvsignore, man/tr/.cvsignore, man/zh_CN/.cvsignore, man/zh_TW/.cvsignore, man/cs/.cvsignore, man/de/.cvsignore, man/es/.cvsignore, man/fi/.cvsignore, man/fr/.cvsignore, man/hu/.cvsignore, man/id/.cvsignore, man/it/.cvsignore, man/ja/.cvsignore, man/ko/.cvsignore:
2669         *.xml added.
2670
2671         * man/cs/.cvsignore, man/de/.cvsignore, man/es/.cvsignore, man/fi/.cvsignore, man/fr/.cvsignore, man/hu/.cvsignore, man/id/.cvsignore, man/it/.cvsignore, man/ja/.cvsignore, man/ko/.cvsignore, man/pl/.cvsignore, man/pt_BR/.cvsignore, man/ru/.cvsignore, man/tr/.cvsignore, man/zh_CN/.cvsignore, man/zh_TW/.cvsignore, man/.cvsignore:
2672         .xml2po.mo added.
2673
2674         * NEWS, man/pl/vipw.8: update pl vipw(8) man page.
2675
2676         * src/useradd.c: s/mailbox/mailbox file/
2677
2678         * man/pl/pl.po: seems vipw finished.
2679
2680         * man/fr/fr.po, man/vipw.8.xml: s/Quiet mode database./Quiet mode./
2681
2682         * man/pl/pl.po: more entries.
2683
2684         * po/vi.po, po/zh_CN.po, po/zh_TW.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
2685         /mailbox/mailbox file/
2686
2687         * man/pl/pl.po: fill few entries.
2688
2689         * man/Makefile.am: fixes in dist-po-files target.
2690
2691         * man/Makefile.am: pl added to Linguas. Some mprovements.
2692
2693         * man/fr/fr.po:
2694         initial version based on ond version submited by Christian Perrier <bubulle@debian.org>.
2695
2696         * man/pl/pl.po: initial version.
2697
2698         * man/Makefile.am:
2699         implemet update-po target and dist, dist-check hooks for put .po and
2700         .pot files in dist tar ball.
2701
2702         * src/chgpasswd.c:
2703         reverte struct group newgr declaration but use them only conditionaly (#ifndef SHADOWGRP).
2704
2705 2006-05-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
2706
2707         * NEWS, configure.in: schedule release 4.0.16 to 29.05.06.
2708
2709         * po/pl.po: updated.
2710
2711         * po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po:
2712         run "make update-po".
2713
2714         * NEWS, src/useradd.c:
2715         fixed userdel CERT VU#312962: fixed forgoten checking of the return
2716         value from fchown() before proceeding with the fchmod() (prepared
2717         based on OWL fix submited by Solar Designer <solar@openwall.com>),
2718         Use in userdel login.defs::MAIL_DIR instead hardcoded /var/mail on created
2719         mailbox path (based on OWL fixes submited by Solar Designer <solar@openwall.com>).
2720
2721 2006-05-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
2722
2723         * man/.cvsignore: added *.[1358]
2724
2725         * NEWS, man/ru/Makefile.am, man/ru/chgpasswd.8:
2726         added chgpasswd(8) ru man page (by Yuri Kozlov <kozlov.y@gmail.com>).
2727
2728         * po/gl.po: updated (by Jacobo Tarrio <jtarrio@debian.org>).
2729
2730         * NEWS, man/ru/login.defs.5, man/ru/passwd.1, man/ru/userdel.8, man/ru/usermod.8:
2731         updated ru login.defs(5), passwd(1), userdel(8), usermod(8) man pages
2732         (by Yuri Kozlov <kozlov.y@gmail.com>).
2733
2734         * NEWS, po/ru.po: updated (by Yuri Kozlov <kozlov.y@gmail.com>).
2735
2736         * NEWS, po/pt.po: updated (by Miguel Figueiredo <elmig@debianpt.org>).
2737
2738 2006-05-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
2739
2740         * NEWS, man/Makefile.am, man/ja/Attic/pw_auth.3, man/ja/Makefile.am, man/pl/Attic/pw_auth.3, man/pl/Makefile.am, man/ru/Attic/pw_auth.3, man/ru/Makefile.am:
2741         pw_auth(3) man page removed (outdated).
2742
2743         * man/Makefile.am, man/fr/Makefile.am, man/it/Makefile.am, man/ja/Makefile.am, man/pl/Makefile.am, man/ru/Makefile.am, NEWS, autogen.sh:
2744         install limits(5), login.access(5) and porttime(5) man pages only when
2745         shadow is builded with PAM support disabled.
2746
2747         * NEWS: cleanups.
2748
2749         * autogen.sh:
2750         by default in development enviroment use CFLAGS="-O2 -Wall".
2751
2752         * src/chgpasswd.c (main): remove two unused variables (newgr and now).
2753
2754         * src/userdel.c (main): removed unused arg variable.
2755
2756         * libmisc/setupenv.c (setup_env):
2757         move *cp varable to #ifndef PAM part (fixed compilation
2758         warning about unused variable).
2759
2760         * lib/getdef.c: now GETPASS_ASTERISKS is SKEY #define dependent.
2761
2762         * configure.in, NEWS, lib/Attic/getpass.c, lib/pwauth.c:
2763         by default do not use libshadow_getpass() as getpass() replacemement.
2764         Use libshadow_getpass() only when S/KEY support is enabled.
2765         Current glibc getpass() handles correctly longer than 8 characters
2766         passwords and libshadow_getpass() is used only because libc getpass()
2767         do not handles password prompting with echo enabled.
2768
2769         * src/sulogin.c: break long line.
2770
2771         * lib/pwauth.c:
2772         added #include <unistd.h> and remove localy defined getpass() prototype.
2773
2774 2006-05-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
2775
2776         * man/Makefile.am: removed dupplicated sulogin.8.xml from EXTRA_DIST.
2777
2778         * man/Attic/pw_auth.3.xml, man/Makefile.am: remove pw_auth(3) man page.
2779
2780         * NEWS, lib/getdef.c: move login.defs::MD5_CRYPT_ENAB to non-PAM part.
2781
2782         * po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/userdel.c, po/bs.po:
2783         typo (s/removel/removal/)
2784
2785 2006-05-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
2786
2787         * man/userdel.8.xml:
2788         updated (after add getopt_log() support for userdel).
2789
2790         * po/pl.po: updated.
2791
2792         * po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/userdel.c, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po:
2793         userdel rewrited for use getopt_log().
2794
2795         * po/pl.po: cleanups.
2796
2797         * etc/pam.d/Makefile.am, etc/pam.d/chgpasswd: new file.
2798
2799 2006-05-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
2800
2801         * NEWS, po/da.po:
2802         updated (by Claus Hindsgaul <claus.hindsgaul@gmail.com>).
2803
2804 2006-05-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
2805
2806         * NEWS, po/sv.po: updated (by Daniel Nylander <yeager@lidkoping.net>).
2807
2808         * NEWS, configure.in, etc/Makefile.am, etc/pam.d/Makefile.am:
2809         install default/template configuration files:
2810         - if shadow is configured with use PAM install /etc/pam.d/* files,
2811         - if shadow do not uses PAM install /etc/{limits,login.acces} files,
2812         - install /etc/login.defs and /etc/default/useradd files.
2813
2814         COMMENT: it is possible to extend this for install above files for specified
2815         distribution. For example: if exist /etc/fedora-release install Fedora specyfic
2816         default configuration files and this files can be distributed in dist tar ball.
2817
2818         * NEWS, po/gl.po: updated (by Jacobo Tarrio <jtarrio@trasno.net>).
2819
2820 2006-05-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
2821
2822         * NEWS, po/fr.po:
2823         updated (by Christian Perrier <bubulle@kheops.frmug.org>).
2824
2825         * NEWS, lib/commonio.c:
2826         fixed handle relative symlinks too in lib/commonio.c (merge patch from Fedora).
2827
2828         * NEWS, lib/nscd.c: properly notify nscd to flush its cache
2829         (https://bugzilla.redhat.com/bugzilla/186803).
2830
2831         * NEWS, libmisc/copydir.c (copy_tree):
2832         fixes for verify return values mkdir() and chown()
2833         on copy files (merge 482_libmisc_copydir_check_return_values Debian patch).
2834
2835         * po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/chfn.c, src/chsh.c, src/grpck.c, src/login.c, src/pwck.c, src/useradd.c, src/usermod.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po:
2836         use '%s' cytation instead `%s'.
2837
2838         * NEWS, src/su.c:
2839         reverte http://bugs.debian.org/276419 (this is Debian specyfic).
2840
2841         * libmisc/setupenv.c, libmisc/sub.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/chfn.c:
2842         use '%s' cytation instead \"%s\".
2843
2844         * po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, src/grpck.c:
2845         typo.
2846
2847         * po/pl.po: updated.
2848
2849         * NEWS, libmisc/setupenv.c (setup_env):
2850         export MAIL only when MAIL_CHECK_ENAB is enabled
2851         (Mike Frysinger <vapier@gentoo.org>).
2852
2853         * po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/hu.po, po/id.po, po/it.po, src/grpck.c, src/pwck.c:
2854         warn when the members of a group differ in /etc/groups and /etc/gshadow
2855         (fixed http://bugs.debian.org/75181).
2856
2857         * NEWS, src/su.c:
2858         concatenate the non-su arguments and provide them to the shell with
2859         the -c option (fixes for http://bugs.debian.org/317264 and
2860         http://bugs.debian.org/276419).
2861
2862 2006-05-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
2863
2864         * NEWS, man/passwd.1.xml:
2865         better document how password strength is checked (fixed http://bugs.debian.org/115380).
2866
2867 2006-04-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
2868
2869         * NEWS, man/usermod.8.xml:
2870         added missing -a option description (by Christian Perrier <bubulle@debian.org>).
2871
2872 2006-04-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
2873
2874         * NEWS, man/hu/chsh.1, man/hu/login.1, man/hu/newgrp.1:
2875         fixed typos (by Koblinger Egmont <egmont@uhulinux.hu>).
2876
2877 2006-04-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
2878
2879         * NEWS, po/LINGUAS, po/hu.po:
2880         new hu translation (by SZERVÁC Attila <sas@321.hu>).
2881
2882 2006-04-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
2883
2884         * man/userdel.8.xml:
2885         minior fixes for the note under the -f option (Mike Frysinger <vapier@gentoo.org>).
2886
2887 2006-04-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
2888
2889         * NEWS, po/id.po: updatd (by Parlin Imanuel <pimanuel@gmail.com>).
2890
2891 2006-04-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
2892
2893         * src/su.c: indent code.
2894
2895         * NEWS, src/su.c:
2896         fixed exit with a status 0 when the invoked command is terminated
2897         by a signal which was not catched
2898         (fixed by Eero Häkkinen <eero17@bigfoot.com>)
2899
2900         * README:
2901         simple patch to fixup grammar and Gentoo distfile URL (by Mike Frysinger <vapier@gentoo.org>).
2902
2903 2006-03-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
2904
2905         * man/Attic/pw_auth.3.xml, man/chage.1.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newgrp.1.xml, man/newusers.8.xml, man/nologin.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/sg.1.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml:
2906         removed <!DOCTYPE> tag (require strict DocBook XML V4.3//EN DTD isn't neccessary).
2907
2908         * NEWS, src/login.c:
2909         cancel login timeout after authentication so that patient people
2910         timing out on network directory services can log in with local
2911         accounts (http://bugs.debian.org/107148).
2912
2913         * man/fr/login.defs.5, man/ja/login.defs.5, man/pl/useradd.8, man/ru/login.defs.5:
2914         remove CREATE_HOME.
2915
2916         * NEWS, man/login.defs.5.xml:
2917         CREATE_HOME is not supported by useradd (patch by Mike Frysinger <vapier@gentoo.org>).
2918
2919 2006-03-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
2920
2921         * po/nl.po:
2922         s/wachtwoord is mes succes aangepast/wachtwoord is met succes aangepast/
2923         (typo reported by Wim De Smet <wdesmet@yucom.be>).
2924
2925 2006-03-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
2926
2927         * src/passwd.c:
2928         removed GPASSWD_PROGRAM, CHFN_PROGRAM CHFN_PROGRAM #defines (not used now).
2929
2930         * NEWS, man/Makefile.am, man/chgpasswd.8.xml:
2931         chgpasswd(8): new man page.
2932
2933 2006-03-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
2934
2935         * man/Attic/vigr.8, man/Attic/vipw.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/getspnam.3, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/grpconv.8, man/Attic/grpunconv.8, man/Attic/gshadow.5, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/nologin.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Attic/sg.1, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8:
2936         remove english roff man pages from repo.
2937
2938 2006-03-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
2939
2940         * NEWS, src/chgpasswd.c:
2941         fixes for build correctly with --disable-shadowgrp
2942         (patch by Johannes Winkelmann <jw@tks6.net>)
2943
2944 2006-03-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
2945
2946         * man/pl/chage.1: fixed typo.
2947
2948 2006-03-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
2949
2950         * po/it.po:
2951         updated for 4.0.15 (by Danilo Piazzalunga <danilopiazza@gmail.com>).
2952
2953 2006-03-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
2954
2955         * NEWS, po/nb.po:
2956         updated for 4.0.15 (by Bjørn Steensrud <bjornst@powertech.no>).
2957
2958         * po/pt.po:
2959         updated for 4.0.15 (by Miguel Figueiredo <mfigueiredo@gmail.com>).
2960
2961         * man/Makefile.am, NEWS, configure.in:
2962         do not install translated man pages if shadow is configured with --disable-nls
2963         (based patch submited by Mike Frysinger <vapier@gentoo.org>).
2964
2965         * NEWS, po/pt_BR.po:
2966         updated for 4.0.15 (by Andre Luis Lopes <andrelop@debian.org>).
2967
2968         * po/fr.po:
2969         updated for 4.0.15 (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
2970
2971 2006-03-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
2972
2973         * NEWS, configure.in, lib/pwauth.c:
2974         added fixes for detect BSD's S/Key with updated the skeychallenge() function
2975         for take a fourth argument in case BSD version
2976         (patch submited by Mike Frysinger <vapier@gentoo.org>)
2977
2978         * README: added paragragraph about S/Key support.
2979
2980         * po/sk.po: updated for 4.0.15 (by Peter Mann <Peter.Mann@tuke.sk>).
2981
2982         * NEWS: newgrp: do not link with libselinux.
2983
2984         * NEWS, po/zh_CN.po:
2985         updated for 4.0.15 (by Carlos Z.F. Liu <carlosliu@users.sourceforge.net>).
2986
2987         * po/ru.po: updated for 4.0.15 (by Yuri Kozlov <kozlov.y@gmail.com>).
2988
2989         * src/Makefile.am:
2990         removed $(LIBSELINUX) from newgrp_LDADD (newgrp does not need to be linked
2991         with SELinux libraries).
2992
2993         * man/ru/Attic/pw_auth.3, man/ru/chsh.1, man/ru/expiry.1, man/ru/faillog.5, man/ru/faillog.8, man/ru/gpasswd.1, man/ru/groupadd.8, man/ru/groupdel.8, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/groups.1, man/ru/grpck.8, man/ru/gshadow.5, man/ru/id.1, man/ru/lastlog.8, man/ru/limits.5, man/ru/login.1, man/ru/login.access.5, man/ru/login.defs.5, man/ru/logoutd.8, man/ru/newgrp.1, man/ru/newusers.8, man/ru/nologin.8, man/ru/passwd.1, man/ru/passwd.5, man/ru/porttime.5, man/ru/pwck.8, man/ru/pwconv.8, man/ru/sg.1, man/ru/shadow.3, man/ru/shadow.5, man/ru/su.1, man/ru/suauth.5, man/ru/sulogin.8, man/ru/useradd.8, man/ru/userdel.8, man/ru/usermod.8, man/ru/vipw.8, NEWS, man/ru/Makefile.am, man/ru/chage.1, man/ru/chfn.1, man/ru/chpasswd.8:
2994         ru man pages: added new nologin(8) and updated all other man pages
2995         (by Yuri Kozlov <kozlov.y@gmail.com>).
2996
2997 2006-03-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
2998
2999         * NEWS, po/nl.po:
3000         updated for 4.0.15 (by cobaco (aka Bart Cornelis) <cobaco@linux.be>).
3001
3002         * po/vi.po:
3003         updated for 4.0.15 (by Clytie Siddall <clytie@riverland.net.au>).
3004
3005         * po/sv.po:
3006         updated for 4.0.15 (by Daniel Nylander <po@danielnylander.se>).
3007
3008 2006-03-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
3009
3010         * po/eu.po: updated for 4.0.15 (by pi <pi@beobide.net>).
3011
3012         * po/ro.po: cleanups.
3013
3014         * NEWS, po/tl.po:
3015         updated for 4.0.15 (by Eric Pareja <xenos@upm.edu.ph>).
3016
3017         * po/ro.po: updated for 4.0.15 (by Sorin B. <sorin@bonbon.net>).
3018
3019         * NEWS, po/es.po:
3020         updated for 4.0.15 (by Ruben Porras <nahoo82@gmail.com>).
3021
3022 2006-03-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
3023
3024         * NEWS, po/da.po:
3025         updated for 4.0.15 (by Claus Hindsgaul <claus.hindsgaul@gmail.com>).
3026
3027         * NEWS, man/fi/chsh.1, man/fi/su.1:
3028         update fi chsh(1), su(1) man pages generated from XML files
3029         (Tommi Vainikainen <thv+debian@iki.fi>).
3030
3031         * NEWS, po/fi.po:
3032         updated for 4.0.15 (by Tommi Vainikainen <thv+debian@iki.fi>).
3033
3034         * NEWS, po/cs.po:
3035         updated for 4.0.15 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
3036
3037         * NEWS, man/cs/Makefile.am, man/cs/expiry.1, man/cs/faillog.5, man/cs/faillog.8, man/cs/gpasswd.1, man/cs/groupadd.8, man/cs/groupdel.8, man/cs/logoutd.8, man/cs/nologin.8, man/cs/vipw.8:
3038         added new cs man pages: expiry(1), faillog(5), faillog(8), gpasswd(1),
3039         groupadd(8), groupdel(8), logoutd(8), nologin(8), vipw(8).
3040
3041         * NEWS: typo.
3042
3043         * src/useradd.c, NEWS, lib/getdef.h, man/Attic/login.defs.5, man/login.defs.5.xml, src/login.c, src/newusers.c:
3044         default UMASK if not specified in login.defs is 022.
3045
3046 2006-03-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
3047
3048         * po/pl.po: updated for 4.0.15.
3049
3050         * NEWS, po/gl.po:
3051         updated for 4.0.15 (by Jacobo Tarrio <jtarrio@trasno.net>).
3052
3053         * NEWS, configure.in: schedule release 4.0.15 to 13-03-2006.
3054
3055 2006-03-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
3056
3057         * NEWS: typo (s/onas Meurer/Jonas Meurer/)
3058
3059         * src/.cvsignore: added chgpasswd.
3060
3061         * po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/Makefile.am, src/chgpasswd.c, NEWS, po/POTFILES.in, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po:
3062         chgpasswd: new tool (by Jonas Meurer <mejo@debian.org>).
3063
3064         * src/lastlog.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3065         s/Unexpected/unexpected/
3066
3067         * po/fr.po, po/gl.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/lastlog.c, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po:
3068         print the usage and exit if an additional argument is profided to
3069         lastlog (merge 488_laslog_verify_arguments Debian patch).
3070
3071 2006-03-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
3072
3073         * man/Attic/chpasswd.8, man/chpasswd.8.xml:
3074         fixed CAVEATS section (by Justin Pryzby <justinpryzby@users.sourceforge.net>)
3075
3076 2006-02-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
3077
3078         * man/Attic/passwd.1, man/passwd.1.xml:
3079         fixed SYNOPSIS section (http://bugs.debian.org/352136).
3080
3081 2006-02-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
3082
3083         * po/ro.po: updated (by Sorin Batariuc <sorin@bonbon.net>).
3084
3085 2006-02-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
3086
3087         * NEWS, lib/Makefile.am, src/Makefile.am:
3088         login, nologin, su: do not link with libselinux
3089         (merge 490_link_selinux_only_when_needed Debian patch).
3090
3091         * NEWS, src/chage.c, src/chfn.c, src/chsh.c, src/passwd.c:
3092         fixed confusing error message if /proc is not mounted
3093         (http://bugs.debian.org/352494
3094         patch Nicolas François <nicolas.francois@centraliens.net>)
3095
3096         * po/ro.po:
3097         updated (commited http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=347755).
3098
3099         * NEWS, po/ca.po: updated (by Jordi Mallach <jordi@debian.org>).
3100
3101 2006-02-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
3102
3103         * man/gpasswd.1.xml, man/passwd.1.xml, man/passwd.5.xml, man/pwck.8.xml, man/sg.1.xml, man/useradd.8.xml:
3104         cleanups.
3105
3106         * po/gl.po: updated (Jacobo Tarrio <jtarrio@trasno.net>).
3107
3108         * NEWS, po/pt.po:
3109         updated (by Miguel Figueiredo <mfigueiredo@gmail.com>).
3110
3111 2006-02-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
3112
3113         * NEWS, po/it.po:
3114         update (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3115
3116         * po/vi.po: update (by Clytie Siddall <clytie@riverland.net.au>).
3117
3118         * po/sv.po: updated (by Daniel Nylander <yeager@lidkoping.net>).
3119
3120 2006-02-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
3121
3122         * po/fr.po: updated (by Christian Perrier <bubulle@kheops.frmug.org>).
3123
3124         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3125         run "make update-po".
3126
3127         * po/pl.po: updated.
3128
3129         * po/sk.po: updated (by Peter Mann <Peter.Mann@tuke.sk>).
3130
3131         * po/eu.po: update (by ^pi^ <pi@beobide.net>).
3132
3133 2006-02-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
3134
3135         * NEWS, src/login.c:
3136         merge 433_login_more_LOG_UNKFAIL_ENAB Debian patch:
3137         - TOO MANY LOGIN... logged if PAM_MAXTRIES or failcount >= retries
3138           (was onl test PAM_MAXTRIES),
3139         - print to stderr (in addition to syslog) in case of maximum number of
3140           tries exceeded,
3141         - always prints the number of tries in the syslog entry.
3142         - add special handling for PAM_ABORT
3143         - add an entry to failog, as when USE_PAM is not defined. (#53164)
3144         - changed pam_end to PAM_END. This is certainly was a mistake.
3145           PAM_END is pam_close_seesion + pam_end. Here, the session is still not
3146           open, we don't have to close it.
3147         - a HAVE_PAM_FAIL_DELAY is missing
3148
3149         * po/ro.po: kill one fuzzy.
3150
3151         * po/ro.po, NEWS: updated (by Sorin B. <sorin@bonbon.net>).
3152
3153         * src/gpasswd.c: s/die/catch_signals/
3154
3155         * src/expiry.c, src/sulogin.c: s/catch/catch_signals/
3156
3157         * src/su.c: /su_catch_sig/chatch_signals/
3158
3159 2006-02-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
3160
3161         * src/id.c, src/groups.c, libmisc/getdate.y: lint code using CC=g++.
3162
3163         * NEWS, src/su.c:
3164         fixed pam session support (patch from Topi Miettinen; fixed #57526, #55873,
3165         #57532 Debian bugs).
3166
3167         * NEWS:
3168         fixed pam session support (patch from Topi Miettinen; fixed #57526,
3169         #55873, #57532 Debian bugs).
3170
3171         * NEWS, src/userdel.c:
3172         user's group is already removed by update_groups(). remove_group()
3173         is not needed (bug introduced in 4.0.14 on merge FC fixes). Fixed by Nicolas
3174         François <nicolas.francois@centraliens.net>
3175
3176         * NEWS, src/useradd.c: allways remove group and gshadow databases lock,
3177         Fixed by Nicolas François <nicolas.francois@centraliens.net>
3178         (http://bugs.debian.org/348250)
3179
3180         * NEWS, src/userdel.c: fixed excess audit_logger() argument.
3181
3182         * NEWS, lib/prototypes.h:
3183         corrected prototypes in lib/prototypes.h (thre is no audit_help_log(); added
3184         audit_logger() prototype).
3185
3186         * src/login.c: fixed missing ";" in declaration.
3187
3188         * man/Attic/limits.5, man/limits.5.xml:
3189         fixed example limits string (by Yuri Kozlov <kozlov.y@gmail.com>).
3190
3191 2006-02-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
3192
3193         * NEWS, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/chage.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/gl.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po:
3194         added missing \n on display password status if password must be chaged.
3195
3196 2006-02-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
3197
3198         * src/useradd.c, NEWS:
3199         fixed allow non-unique UID (http://bugs.debian.org/351281).
3200
3201 2006-02-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
3202
3203         * po/cs.po: updated (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
3204
3205 2006-01-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
3206
3207         * NEWS, po/vi.po:
3208         updated (by Clytie Siddall <clytie@riverland.net.au>).
3209
3210 2006-01-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
3211
3212         * po/fr.po:
3213         typo (fixed by Christian Perrier <bubulle@kheops.frmug.org>).
3214
3215         * po/sk.po: updated (by Peter Mann <Peter.Mann@tuke.sk>).
3216
3217 2006-01-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
3218
3219         * man/pl/grpck.8, man/pl/login.defs.5, man/pl/passwd.1, man/pl/pwck.8, man/de/passwd.1, man/es/login.1, man/es/vipw.8, man/fi/passwd.1, man/hu/passwd.1, man/id/login.1, man/it/grpck.8, man/it/pwck.8, man/ja/grpck.8, man/ja/passwd.1, man/ja/pwck.8, man/ko/login.1, man/ko/su.1:
3220         fixes some issues that cause warnings when the manpages are
3221         displayed (by Nicolas François <nicolas.francois@centraliens.net>).
3222
3223 2006-01-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
3224
3225         * NEWS, po/eu.po: updated (by pi <pi@beobide.net>).
3226
3227         * libmisc/addgrps.c, libmisc/xmalloc.c, src/groups.c:
3228         fixes after linting code using CC=g++: cast {m,re}alloc() return value to
3229         proper type.
3230
3231 2006-01-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
3232
3233         * man/Attic/chage.1, man/Attic/passwd.5, man/Attic/su.1, man/Attic/useradd.8, man/chage.1.xml, man/passwd.5.xml, man/su.1.xml, man/useradd.8.xml:
3234         uniformity and grammar fixes (by Christine Spang <spangarang@twcny.rr.com>).
3235
3236         * NEWS, po/ru.po: updated (by Yuri Kozlov <kozlov.y@gmail.com>).
3237
3238 2006-01-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
3239
3240         * po/fr.po, NEWS:
3241         updated (by Christian Perrier <bubulle@kheops.frmug.org>).
3242
3243 2006-01-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
3244
3245         * NEWS, libmisc/setupenv.c, src/chage.c, src/chsh.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/login.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/usermod.c, src/vipw.c:
3246         variouse code cleanups for make possible compilation of shadow with
3247         -Wall -Werror (by Alexander Gattin <xrgtn@yandex.ru>).
3248
3249         * libmisc/age.c, libmisc/shell.c, src/login.c, src/newgrp.c, src/su.c, src/sulogin.c, src/userdel.c, NEWS, lib/prototypes.h:
3250         move exit() outside libmisc/shell.c::shell() for handle shell() errors
3251         on higher level (now is better visable where some programs exit with 126 and
3252         127 exit codes); added new shell() parameter (char *const envp[]) which allow
3253         fix preserving enviloment in su on using -p.
3254         (patch by Alexander Gattin <xrgtn@yandex.ru>)
3255
3256         * NEWS, po/el.po:
3257         updated (by Konstantinos Margaritis <markos@debian.org>).
3258
3259 2006-01-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
3260
3261         * lib/exitcodes.h: new #defines:
3262         #define E_CMD_NOEXEC           126     /* can't run command/shell */
3263         #define E_CMD_NOTFOUND         127     /* can't find command/shell to run */
3264
3265 2006-01-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
3266
3267         * man/Attic/passwd.1, man/passwd.1.xml:
3268         fixes after reviewed for grammatical and other small errors that detract from the
3269         polish of the content to native English speakers.
3270         I also went ahead and changed all gender references to be a consistent
3271         "his/her" (or equivalent) - the original had a mix of just "his", just
3272         "her", and occasionally "his/her".
3273         (by Christine Spang <spangarang@twcny.rr.com>).
3274
3275         * po/it.po: updated (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3276
3277 2006-01-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
3278
3279         * NEWS: updated.
3280
3281         * libmisc/shell.c: remove DEBUG code.
3282
3283         * po/LINGUAS, po/gl.po, NEWS:
3284         added new gl translation (by Jacobo Tarrio <jtarrio@trasno.net>).
3285
3286 2006-01-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
3287
3288         * po/eu.po: small update (by pi <pi@beobide.net>).
3289
3290 2006-01-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
3291
3292         * src/su.c: fixed compilation error.
3293
3294 2006-01-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
3295
3296         * po/sv.po: updated (by Daniel Nylander <yeager@lidkoping.net>)
3297         http://bugs.debian.org/346449
3298
3299 2006-01-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
3300
3301         * NEWS, man/Attic/useradd.8, man/useradd.8.xml:
3302         better document useradd -d option: will not add the user's home directory
3303         if it does not already exist (http://bugs.debian.org/154996)
3304
3305         * man/Attic/su.1, man/su.1.xml, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, src/su.c:
3306         added handle -c,--command option for GNU su compliance (merge
3307         437_su_-c_option Debian Patch).
3308
3309         * man/Attic/login.1, man/Attic/passwd.1, man/Attic/su.1, man/login.1.xml, man/passwd.1.xml, man/su.1.xml:
3310         man pages cleanups.
3311         (http://bugs.debian.org/341489)
3312
3313         * NEWS, man/Attic/nologin.8, man/Makefile.am, man/nologin.8.xml:
3314         nologin(8) man pages added (merge 478_nologin.8.xml Debian patch).
3315
3316         * po/sk.po: updated (by Peter Mann <Peter.Mann@tuke.sk>)
3317         http://bugs.debian.org/346376
3318
3319 2006-01-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
3320
3321         * po/id.po: updated (by Parlin Imanuel <parlin_i@yahoo.com>)
3322         http://bugs.debian.org/345514
3323
3324         * NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/login.c:
3325         added translate login prompt string (suggested by Evgeniy Dushistov).
3326
3327 2006-01-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
3328
3329         * NEWS, configure.in: start work on 4.1.0.
3330
3331         * po/sv.po: updated (by Daniel Nylander <yeager@lidkoping.net>).
3332         http://bugs.debian.org/346017
3333
3334 2006-01-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
3335
3336         * NEWS: correct 4.0.14 release date (03-01-2006).
3337
3338         * src/Makefile.am: reverte install nologin in sbindir and use usbindir.
3339
3340         * po/POTFILES.in: removed src/chsh_chkshell.c.
3341
3342         * lib/prototypes.h: remove grdbm.c prototypes.
3343
3344         * lib/prototypes.h, src/Attic/chsh_chkshell.c, src/Makefile.am, src/chsh.c:
3345         move check_shell() from src/chsh_chkshell.c to src/chsh.c.
3346
3347         * configure.in:
3348         s/libpam_misc is missing/libpam_misc is missing for enable PAM support/
3349
3350 2006-01-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
3351
3352         * etc/pam.d/.cvsignore: added.
3353
3354         * src/su.c: indent code.
3355
3356         * src/su.c:
3357         without it, $(su - user -c "echo \$SHELL") wont return the good value, but
3358         $(su user -c "echo \$SHELL") will.
3359         I think LOGNAME can also be set (this is done in setup_env, in the
3360         fakelogin case).
3361         (by Nicolas François <nicolas.francois@centraliens.net>)
3362
3363         * src/su.c:
3364         simplifies how -p is handled (at least for its documentation).
3365         (by Nicolas François <nicolas.francois@centraliens.net>)
3366
3367         * src/su.c: fixes "su - -- root" or "su - root -- -c" (it is needed if
3368         the second patch is applied).
3369         (by Nicolas François <nicolas.francois@centraliens.net>)
3370
3371         * src/su.c:
3372         This second patch changes the way options are handled by getopt. Once a
3373         non-su option is found, the getopt processing is stopped.
3374         Whithout this patch, "su root -c ls" won't work (getopt will complain that
3375         -c is not an su option).
3376         (by Nicolas François <nicolas.francois@centraliens.net>).
3377
3378         * etc/pam.d/chage, etc/pam.d/chfn, etc/pam.d/chpasswd, etc/pam.d/chsh, etc/pam.d/groupadd, etc/pam.d/groupdel, etc/pam.d/groupmod, etc/pam.d/login, etc/pam.d/newusers, etc/pam.d/passwd, etc/pam.d/su, etc/pam.d/useradd, etc/pam.d/userdel, etc/pam.d/usermod:
3379         prepare for use on Fedora Core.
3380
3381         * po/cs.po, po/pl.po: run "make update-po".
3382
3383         * src/Makefile.am: move nologin to sbindir.
3384
3385         * man/Attic/groupadd.8, man/groupadd.8.xml: s/gid/GID/
3386
3387         * man/Attic/lastlog.8, man/Attic/useradd.8, man/lastlog.8.xml, man/useradd.8.xml:
3388         s/uid/UID/
3389
3390 2005-12-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
3391
3392         * po/tl.po: updated for 4.0.14 (by Eric Pareja <xenos@upm.edu.ph>).
3393
3394 2005-12-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
3395
3396         * NEWS, po/ca.po:
3397         updated for 4.0.14 (by Guillem Jover <guillem@debian.org>).
3398
3399 2005-12-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
3400
3401         * po/el.po:
3402         updated for 4.0.14 (by Konstantinos Margaritis <markos@debian.org>).
3403
3404 2005-12-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
3405
3406         * doc/.cvsignore, etc/.cvsignore, lib/.cvsignore, po/.cvsignore, src/.cvsignore, .cvsignore, contrib/.cvsignore:
3407         added a lot of generated files they are not listed in .cvsignore files
3408         (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3409
3410         * src/su.c:
3411         fixed some comments and replace getuid() by !amroot. This removes a system
3412         call and may be more readable (Nicolas François <nicolas.francois@centraliens.net>).
3413
3414         * man/Attic/su.1, man/su.1.xml:
3415         added forgoten the SHELL argument description (by Nicolas François <nicolas.francois@centraliens.net>).
3416
3417         * man/Attic/useradd.8, man/useradd.8.xml:
3418         s/group/user/ (cached by Nicolas François).
3419
3420 2005-12-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
3421
3422         * man/ko/vigr.8: added.
3423
3424         * po/it.po:
3425         updated for 4.0.14 (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3426
3427 2005-12-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
3428
3429         * NEWS, po/pt.po:
3430         updated for 4.0.14 (by Miguel Figueiredo <mfigueiredo@gmail.com>).
3431
3432         * src/useradd.c:
3433         s/grp_update/grp_add/ in comment (by Nicolas François <nicolas.francois@centraliens.net>).
3434
3435         * man/Attic/login.1, man/login.1.xml:
3436         added use <envar></envar> tags instead <emphasis></emphasis>.
3437
3438         * man/Attic/su.1, man/su.1.xml: added use <envar></envar>.
3439
3440         * man/Attic/su.1, man/su.1.xml:
3441         updated man page after change su for use getopt_long()
3442         (by Nicolas François <nicolas.francois@centraliens.net>)
3443
3444 2005-12-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
3445
3446         * NEWS, po/fi.po:
3447         updated for 4.0.14 (by Tommi Vainikainen <thv+debian@iki.fi>).
3448
3449         * po/ru.po: updated for 4.0.14 (by Yuri Kozlov <kozlov.y@gmail.com>).
3450
3451         * man/ru/login.1, man/ru/passwd.1, man/ru/pwck.8, man/ru/vipw.8:
3452         updated (by Yuri Kozlov <kozlov.y@gmail.com>_.
3453
3454         * doc/Attic/README.linux, doc/Makefile.am: removed.
3455
3456         * README, doc/Attic/README.linux:
3457         move contributors list from doc/README.linux to README.
3458
3459         * doc/Attic/LSM, doc/Attic/README, doc/Makefile.am:
3460         removed (outdated content).
3461
3462         * NEWS, po/cs.po:
3463         updated cs.po for 4.0.14 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
3464
3465         * po/pl.po: updated.
3466
3467         * po/fr.po:
3468         kill one fuzzy (by Christian Perrier <bubulle@kheops.frmug.org>).
3469
3470         * NEWS, po/da.po:
3471         updated da.po for 4.0.14 (by Claus Hindsgaul <claus_h@image.dk>).
3472
3473         * po/eu.po: updated for 4.0.14 (by pi <pi@beobide.net>).
3474
3475         * NEWS, po/vi.po:
3476         updated vi.po fo 4.0.14 (by Clytie Siddall <clytie@riverland.net.au>).
3477
3478 2005-12-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
3479
3480         * NEWS: set release day for 4.0.14 to 19-12-2005.
3481
3482         * src/login.c:
3483         removed #include "libaudit.h" (it is conditionaly included in "defines.h").
3484
3485         * src/su.c:
3486         replaced "shell" by "shellstr". "shell" is also the name of a function.
3487         (Nicolas François <nicolas.francois@centraliens.net>).
3488
3489         * src/vipw.c: - added missing break in case 'q'.
3490
3491         * NEWS, man/es/Makefile.am, man/es/vigr.8, man/es/vipw.8, man/hu/Makefile.am, man/hu/lastlog.8, man/ko/Makefile.am, man/ko/vipw.8, man/zh_CN/Makefile.am, man/zh_CN/su.1, man/zh_TW/Makefile.am, man/zh_TW/chpasswd.8, man/zh_TW/su.1:
3492         added es, ko vigr(8) and vipw(8), hu lastlog(8), ko vipw(8), zh_CN su(1),
3493         zh_TW chpasswd(8) and su(1),
3494
3495 2005-12-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
3496
3497         * doc/Attic/LICENSE, doc/Makefile.am, COPYING:
3498         move doc/LICENSE to COPYING.
3499
3500         * doc/WISHLIST: remove some outdated/finished things.
3501
3502         * doc/Attic/README.nls, doc/Attic/README.pam, doc/Makefile.am: removed.
3503
3504 2005-12-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
3505
3506         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3507         run "make update-po" (merge changes in su messages).
3508
3509         * NEWS, src/su.c:
3510         added handle -s/--shell, -m/-p/preserve-environment options like GNU su
3511         (based on patches from Debian submited by
3512         Nicolas François <nicolas.francois@centraliens.net>)
3513
3514         * NEWS: updated.
3515
3516         * src/su.c:
3517         added handle -s/--shell option like in GNU su (based on Debian patch sublmited
3518         by Nicolas François <nicolas.francois@centraliens.net>).
3519
3520         * src/su.c:
3521         make -, -l , --login option as no_argument (based on fix by Nicolas François).
3522
3523         * po/it.po:
3524         cosmetic fixes (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3525
3526 2005-12-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
3527
3528         * man/es/Makefile.am: s/patches/passwd/
3529
3530 2005-12-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
3531
3532         * NEWS, configure.in, man/Makefile.am, man/tr/.cvsignore, man/tr/Makefile.am, man/tr/chage.1, man/tr/chfn.1, man/tr/groupadd.8, man/tr/groupdel.8, man/tr/groupmod.8, man/tr/login.1, man/tr/passwd.1, man/tr/passwd.5, man/tr/shadow.5, man/tr/su.1, man/tr/useradd.8, man/tr/userdel.8, man/tr/usermod.8:
3533         added tr man pages.
3534
3535         * man/pt_BR/Makefile.am, man/pt_BR/passwd.5, man/zh_CN/Makefile.am, man/zh_CN/passwd.5, man/zh_TW/Makefile.am, man/zh_TW/passwd.5, NEWS, man/es/Makefile.am, man/es/passwd.5, man/hu/Makefile.am, man/hu/passwd.5:
3536         added es, hu, pt_BR, zh_CN zh_TW translations passwd(5).
3537
3538         * man/Attic/id.1, man/Attic/pw_auth.3, man/Attic/sulogin.8:
3539         regenerated.
3540
3541         * man/ko/Makefile.am: added su.1 to man_MANS.
3542
3543         * man/Makefile.am: reverte incorrect commit.
3544
3545         * man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/vipw.8, man/Makefile.am, man/fr/Makefile.am, man/fr/chage.1, man/fr/chfn.1, man/fr/chpasswd.8, man/fr/chsh.1, man/fr/expiry.1, man/fr/faillog.5, man/fr/faillog.8, man/fr/getspnam.3, man/fr/gpasswd.1, man/fr/groupadd.8, man/fr/groupdel.8, man/fr/groupmod.8, man/fr/groups.1, man/fr/grpck.8, man/fr/grpconv.8, man/fr/grpunconv.8, man/fr/gshadow.5, man/fr/lastlog.8, man/fr/limits.5, man/fr/login.1, man/fr/login.access.5, man/fr/login.defs.5, man/fr/logoutd.8, man/fr/newgrp.1, man/fr/newusers.8, man/fr/passwd.1, man/fr/passwd.5, man/fr/porttime.5, man/fr/pwck.8, man/fr/pwconv.8, man/fr/pwunconv.8, man/fr/sg.1, man/fr/shadow.3, man/fr/shadow.5, man/fr/su.1, man/fr/suauth.5, man/fr/useradd.8, man/fr/userdel.8, man/fr/usermod.8, man/fr/vigr.8, man/fr/vipw.8, NEWS:
3546         added full set (up to date) fr man pages (by Nicolas François <nicolas.francois@centraliens.net>).
3547
3548 2005-12-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
3549
3550         * po/ca.po, po/cs.po, po/da.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/it.po, po/nl.po, po/ro.po, po/sk.po, po/sv.po:
3551         cleanups.
3552
3553         * src/groupadd.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3554         s/--force /--force/
3555
3556         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/useradd.c:
3557         s/--skel SKEL_DIR /--skel SKEL_DIR/
3558
3559         * po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/passwd.c, po/bs.po, po/ca.po, po/cs.po, po/da.po:
3560         s/--delete /--delete/
3561
3562         * NEWS, po/ru.po:
3563         updated ru translatios for 4.0.14 (by Yuri Kozlov <kozlov.y@gmail.com>).
3564
3565         * po/eu.po: finish update for 4.0.14 (by pi <pi@beobide.net>).
3566
3567         * po/it.po:
3568         updated for 4.0.14 (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3569
3570 2005-12-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
3571
3572         * po/fr.po: updated (by Christian Perrier <bubulle@kheops.frmug.org>).
3573
3574         * NEWS, po/eu.po: Basque translation updated (by pi <pi@beobide.net>).
3575
3576         * po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/su.c, src/usermod.c, po/bs.po:
3577         s/LOGIN/login/ in usage() output.
3578
3579 2005-12-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
3580
3581         * po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/vipw.c, NEWS, man/Attic/vipw.8, man/vipw.8.xml, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po:
3582         rewrited vipw for use getopt_long().
3583
3584         * man/Attic/passwd.1, man/passwd.1.xml: cleanups.
3585
3586         * man/ko/Makefile.am: commented newgrp.1 (must be updated).
3587
3588 2005-12-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
3589
3590         * man/Makefile.am: update-po target added.
3591
3592         * man/Attic/pwck.8, man/pwck.8.xml: document -q option.
3593
3594         * NEWS, lib/getdef.c:
3595         $MAIL_FILE is used in userdel and usermod, $MD5_CRYPT_ENAB
3596         is used by crypt_make_salt, which is used by chpasswd, gpasswd and newusers.
3597         Both variables moved to PAM not dependent (447_missing_login.defs_variables
3598         Debian patch).
3599
3600         * NEWS, src/su.c:
3601         export $USER and $SHELL as well as $HOME (http://bugs.debian.org/11003 and
3602         http://bugs.debian.org/11189).
3603
3604         * NEWS, man/Attic/login.1, man/login.1.xml:
3605         document how to initiate a trusted path on linux
3606         (http://bugs.debian.org/305600).
3607
3608         * NEWS, src/chage.c:
3609         fix chage display when the last change field is set to 0.
3610         This is consistent with PAM (merge 427_chage_expiry_0 Debian patch).
3611
3612 2005-12-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
3613
3614         * configure.in: added man/fi/Makefile to AC_CONFIG_FILES().
3615
3616         * man/zh_TW/chfn.1, man/zh_TW/chsh.1, man/zh_TW/groupadd.8, man/zh_TW/groupdel.8, man/zh_TW/groupmod.8, man/zh_TW/newgrp.1, man/zh_TW/useradd.8, man/zh_TW/userdel.8, man/zh_TW/usermod.8, man/pt_BR/gpasswd.1, man/pt_BR/groupadd.8, man/pt_BR/groupdel.8, man/pt_BR/groupmod.8, man/pt_BR/shadow.5, man/ru/Attic/pw_auth.3, man/ru/chage.1, man/ru/chfn.1, man/ru/chpasswd.8, man/ru/chsh.1, man/ru/expiry.1, man/ru/faillog.5, man/ru/faillog.8, man/ru/gpasswd.1, man/ru/groupadd.8, man/ru/groupdel.8, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/groups.1, man/ru/grpck.8, man/ru/gshadow.5, man/ru/id.1, man/ru/lastlog.8, man/ru/limits.5, man/ru/login.1, man/ru/login.access.5, man/ru/login.defs.5, man/ru/logoutd.8, man/ru/newgrp.1, man/ru/newusers.8, man/ru/passwd.1, man/ru/passwd.5, man/ru/porttime.5, man/ru/pwck.8, man/ru/pwconv.8, man/ru/sg.1, man/ru/shadow.3, man/ru/shadow.5, man/ru/su.1, man/ru/suauth.5, man/ru/sulogin.8, man/ru/useradd.8, man/ru/userdel.8, man/ru/usermod.8, man/ru/vipw.8, man/zh_CN/chfn.1, man/zh_CN/chpasswd.8, man/zh_CN/chsh.1, man/zh_CN/groupadd.8, man/zh_CN/groupdel.8, man/zh_CN/groupmod.8, man/zh_CN/newgrp.1, man/zh_CN/useradd.8, man/zh_CN/userdel.8, man/zh_CN/usermod.8, man/ko/chfn.1, man/ko/chsh.1, man/ko/groups.1, man/ko/id.1, man/ko/login.1, man/ko/newgrp.1, man/ko/passwd.5, man/ko/su.1, man/pl/Attic/pw_auth.3, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/expiry.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/gpasswd.1, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmems.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/limits.5, man/pl/login.1, man/pl/login.access.5, man/pl/login.defs.5, man/pl/logoutd.8, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/passwd.5, man/pl/porttime.5, man/pl/pwck.8, man/pl/pwconv.8, man/pl/shadow.3, man/pl/shadow.5, man/pl/su.1, man/pl/suauth.5, man/pl/sulogin.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, man/pl/vipw.8, man/it/chage.1, man/it/chfn.1, man/it/chpasswd.8, man/it/chsh.1, man/it/expiry.1, man/it/faillog.5, man/it/faillog.8, man/it/gpasswd.1, man/it/groupadd.8, man/it/groupdel.8, man/it/groupmod.8, man/it/groups.1, man/it/grpck.8, man/it/id.1, man/it/lastlog.8, man/it/login.1, man/it/newgrp.1, man/it/newusers.8, man/it/passwd.1, man/it/passwd.5, man/it/porttime.5, man/it/pwck.8, man/it/pwconv.8, man/it/shadow.3, man/it/shadow.5, man/it/su.1, man/it/useradd.8, man/it/userdel.8, man/it/usermod.8, man/ja/Attic/pw_auth.3, man/ja/chage.1, man/ja/chfn.1, man/ja/chpasswd.8, man/ja/chsh.1, man/ja/expiry.1, man/ja/faillog.5, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/groups.1, man/ja/grpck.8, man/ja/id.1, man/ja/lastlog.8, man/ja/limits.5, man/ja/login.1, man/ja/login.access.5, man/ja/login.defs.5, man/ja/logoutd.8, man/ja/newgrp.1, man/ja/newusers.8, man/ja/passwd.1, man/ja/passwd.5, man/ja/porttime.5, man/ja/pwck.8, man/ja/pwconv.8, man/ja/shadow.3, man/ja/shadow.5, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/vipw.8, man/de/chfn.1, man/de/chsh.1, man/de/groups.1, man/de/login.1, man/de/newgrp.1, man/de/passwd.1, man/de/passwd.5, man/de/su.1, man/de/vipw.8, man/es/login.1, man/es/newgrp.1, man/es/passwd.1, man/es/su.1, man/fi/chfn.1, man/fi/chsh.1, man/fi/passwd.1, man/fr/chage.1, man/fr/chpasswd.8, man/fr/chsh.1, man/fr/faillog.5, man/fr/gpasswd.1, man/fr/groups.1, man/fr/id.1, man/fr/newgrp.1, man/fr/passwd.1, man/fr/passwd.5, man/fr/shadow.5, man/fr/su.1, man/fr/useradd.8, man/fr/userdel.8, man/fr/usermod.8, man/hu/chfn.1, man/hu/chsh.1, man/hu/gpasswd.1, man/hu/groups.1, man/hu/id.1, man/hu/login.1, man/hu/newgrp.1, man/hu/passwd.1, man/hu/su.1, NEWS, man/cs/groups.1, man/cs/id.1, man/cs/lastlog.8, man/cs/passwd.5, man/cs/shadow.5, man/cs/su.1:
3617         convert all translated man pages to UFT-8.
3618
3619         * NEWS, src/userdel.c:
3620         fix incorrect audit record in userdel (https://bugzilla.redhat.com/bugzilla/174392).
3621
3622         * po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, src/passwd.c:
3623         s/--all /--all/
3624
3625         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3626         update by some informations about translators (by Christian Perrier) and run "make update-po".
3627
3628 2005-11-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
3629
3630         * NEWS, src/su.c:
3631         if an password is expired, su should propose to change this password
3632         (fixed http://bugs.debian.org/321384).
3633
3634         * src/Makefile.am, src/login.c, NEWS:
3635         added auditing support (based on Fedora patch for login from util-linux).
3636
3637         * src/useradd.c: remove use rflg.
3638
3639         * man/ru/Makefile.am: typo.
3640
3641         * po/pl.po: partialy updated.
3642
3643         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po:
3644         run "make update-po".
3645
3646         * NEWS, src/useradd.c: merge PUG fixes from RedHat patch.
3647
3648 2005-11-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
3649
3650         * NEWS, po/it.po:
3651         updated (by Danilo Piazzalunga <danilopiazza@gmail.com>).
3652
3653         * man/ru/pwconv.8, man/ru/pwunconv.8, man/ru/sg.1, man/ru/shadow.3, man/ru/shadow.5, man/ru/su.1, man/ru/suauth.5, man/ru/sulogin.8, man/ru/useradd.8, man/ru/userdel.8, man/ru/usermod.8, man/ru/vigr.8, man/ru/vipw.8, NEWS, man/ru/Attic/pw_auth.3, man/ru/Makefile.am, man/ru/chage.1, man/ru/chfn.1, man/ru/chpasswd.8, man/ru/chsh.1, man/ru/expiry.1, man/ru/faillog.5, man/ru/faillog.8, man/ru/getspnam.3, man/ru/gpasswd.1, man/ru/groupadd.8, man/ru/groupdel.8, man/ru/groupmems.8, man/ru/groupmod.8, man/ru/groups.1, man/ru/grpck.8, man/ru/grpconv.8, man/ru/grpunconv.8, man/ru/gshadow.5, man/ru/id.1, man/ru/lastlog.8, man/ru/limits.5, man/ru/login.1, man/ru/login.access.5, man/ru/login.defs.5, man/ru/logoutd.8, man/ru/newgrp.1, man/ru/newusers.8, man/ru/passwd.1, man/ru/passwd.5, man/ru/porttime.5, man/ru/pwck.8:
3654         added full set of ru man pages (by Yuri Kozlov <kozlov.y@gmail.com>).
3655
3656 2005-11-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
3657
3658         * NEWS, src/Makefile.am, src/nologin.c: added nologin program.
3659
3660         * NEWS, src/su.c: rewrited for use getopt_long().
3661
3662 2005-11-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
3663
3664         * po/zh_CN.po: updated (by Ming Hua <minghua@rice.edu>).
3665
3666 2005-11-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
3667
3668         * man/Attic/usermod.8, man/usermod.8.xml:
3669         rewrited for document long options.
3670
3671         * NEWS, src/vipw.c:
3672         added a "quiet" mode (http://bugs.debian.org/190252.
3673
3674         * po/de.po:
3675         fixed wrong translation in german po file (http://bugs.debian.org/338373
3676         by Nico Golde <nico@ngolde.de>).
3677
3678         * NEWS, man/Makefile.am, man/fi/.cvsignore, man/fi/Makefile.am, man/fi/chfn.1, man/fi/chsh.1, man/fi/passwd.1, man/fi/su.1:
3679         added fi chfn(1), chsh(1), passwd(1), su(1).
3680
3681         * NEWS, man/it/Makefile.am, man/it/newusers.8: added it newusers(8).
3682
3683         * NEWS, po/fr.po:
3684         updated (by Christian Perrier <bubulle@kheops.frmug.org>).
3685
3686 2005-11-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
3687
3688         * NEWS, src/Makefile.am, src/newgrp.c:
3689         added auditing support for newgrp (by Steve Grubb <sgrubb@redhat.com>).
3690
3691         * NEWS, configure.in, libmisc/audit_help.c:
3692         switch over to a new logging function (by Steve Grubb <sgrubb@redhat.com>).
3693
3694         * README: typo.
3695
3696 2005-11-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
3697
3698         * po/ru.po: updated (by Yuri Kozlov <kozlov.y@gmail.com>).
3699
3700 2005-11-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
3701
3702         * configure.in:
3703         s/logdir/shadow_cv_logdir/ fix wrong var name (by Mike Frysinger <vapier@gentoo.org>).
3704
3705         * man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3.xml, man/Attic/pwck.8, man/Attic/sg.1, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/sg.1.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, README, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/newgrp.1, man/chage.1.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newgrp.1.xml:
3706         move information about all shadow man pages authors from man pages to README file.
3707
3708         * src/userdel.c: added two new error messages to translated phrases.
3709
3710         * NEWS, src/userdel.c:
3711         remove the user's group unless it is not really a user-private group
3712         (based on FC patch).
3713
3714 2005-11-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
3715
3716         * src/usermod.c: fix long name options name in long_options[].
3717
3718 2005-11-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
3719
3720         * src/userdel.c: indent source code.
3721
3722         * NEWS, src/userdel.c:
3723         make the userdel -f option force the removal of the user's group (even if it
3724         is the primary group of another user)
3725         (merge 453_userdel_-f_removes_group Debian patch),
3726
3727         * NEWS, man/Attic/login.1, man/login.1.xml:
3728         better explain the respective roles of login, init and getty with regards
3729         to the utmp file (merge 440_manpages-login.1 Debian patch).
3730
3731         * man/Attic/userdel.8, man/userdel.8.xml:
3732         aphabetic order options description.
3733
3734         * NEWS, man/Attic/userdel.8, man/userdel.8.xml:
3735         document the -f option; document the group removal behavior (merge
3736         455_userdel.8.xml Debian patch).
3737
3738         * NEWS, man/Attic/groupadd.8, man/Attic/useradd.8, man/groupadd.8.xml, man/useradd.8.xml:
3739         document that useradd/groupadd refuse adding entries already in an
3740         external database (http://bugs.debian.org/282184).
3741
3742         * NEWS, libmisc/sulog.c:
3743         log in successful/failed su through syslog (http://bugs.debian.org/190215).
3744
3745         * NEWS, man/it/groupdel.8, man/it/passwd.1, man/it/pwconv.8, man/it/useradd.8, man/it/userdel.8, man/it/usermod.8:
3746         updated it groupdel(8), passwd(1), pwconv(8), useradd(8), userdel(8), usermod(8) man pages
3747         (merge 205_it-manpages Debian patch).
3748
3749         * man/pt_BR/gpasswd.1: merge 204_pt_BR-manpages Debian patch.
3750
3751 2005-10-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
3752
3753         * man/Attic/porttime.5, man/Attic/pwck.8, man/Attic/shadow.3, man/porttime.5.xml, man/pwck.8.xml:
3754         improvements by Yuri Kozlov <kozlov.y@gmail.com>.
3755
3756         * NEWS, po/tl.po: updated (by Eric Pareja <xenos@upm.edu.ph>).
3757
3758         * po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/su.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po:
3759         remove "." from su message.
3760
3761         * po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po:
3762         "make update-po".
3763
3764         * src/usermod.c: cleanups in usage() output.
3765
3766         * src/usermod.c: indent code.
3767
3768         * NEWS, src/usermod.c:
3769         rewrited for use getopt_long() (Christian Perrier <bubulle@kheops.frmug.org>).
3770
3771 2005-10-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
3772
3773         * po/uk.po: updated (by Eugeniy Meshcheryakov <eugen@univ.kiev.ua>).
3774
3775 2005-10-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
3776
3777         * man/Attic/faillog.5, man/Attic/groupmems.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/chpasswd.8.xml, man/groupmems.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/Attic/chpasswd.8:
3778         bunch of cleanups (Yuri Kozlov <kozlov.y@gmail.com>).
3779
3780 2005-10-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
3781
3782         * src/userdel.c, src/usermod.c, lib/pam_defs.h, libmisc/pam_pass.c, libmisc/pwdcheck.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/login.c, src/newusers.c, src/su.c, src/useradd.c:
3783         Simplifications: move all per shadow tool declared struct pam_conv conv
3784         from src/*c to lib/pam_defs.h. #include "pam_defs.h" instead <security/pam_appl.h>
3785         and <security/pam_misc.h>.
3786         Patch partialy based on openpam fixes by Rob Holland <rob@inversepath.com>.
3787
3788         * NEWS, lib/commonio.c:
3789         fixed grpck segmentation fault on using -s when /etc/gshadow is empty (fix by
3790         Tomasz Lemiech <szpajder@staszic.waw.pl>).
3791
3792 2005-10-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
3793
3794         * man/Attic/faillog.5, man/faillog.5.xml:
3795         typos (by A Costa <agcosta@gis.net>).
3796
3797 2005-10-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
3798
3799         * man/Attic/chage.1, man/Attic/chpasswd.8, man/chage.1.xml, man/chpasswd.8.xml:
3800         typos (by A Costa <agcosta@gis.net>).
3801
3802         * NEWS, po/sv.po: updated (by Daniel Nylander <yeager@lidkoping.net>).
3803
3804 2005-10-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
3805
3806         * man/de/newgrp.1, man/es/Makefile.am, man/es/newgrp.1, man/zh_CN/Makefile.am, man/zh_CN/newgrp.1, man/zh_TW/Makefile.am, man/zh_TW/newgrp.1, NEWS, man/de/Makefile.am:
3807         newgrp(1): added de, es, zh_CN, zh_TW translations.
3808
3809 2005-10-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
3810
3811         * man/Attic/gpasswd.1, man/gpasswd.1.xml:
3812         move "Notes about group passwords" section from passwd man page.
3813
3814         * src/passwd.c, NEWS, man/Attic/passwd.1, man/passwd.1.xml:
3815         remove handle -f, -g and -s options in passwd.
3816
3817         * man/userdel.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/logoutd.8.xml, man/newgrp.1.xml, man/newusers.8.xml, man/pwconv.8.xml, man/sg.1.xml:
3818         use locase in <refentrytitle>.
3819
3820         * man/Attic/pw_auth.3, man/Attic/pw_auth.3.xml, man/Attic/shadow.3, man/shadow.3.xml:
3821         added refmiscinfo class="sectdesc">Library Calls</refmiscinfo> in <refmeta>.
3822
3823         * man/Attic/pwconv.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8, man/newusers.8.xml, man/pwconv.8.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml, man/Attic/chpasswd.8, man/Attic/faillog.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/grpck.8, man/Attic/lastlog.8, man/Attic/logoutd.8, man/Attic/newusers.8, man/chpasswd.8.xml, man/faillog.8.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/grpck.8.xml, man/lastlog.8.xml, man/logoutd.8.xml:
3824         added <refmiscinfo class="sectdesc">System Management Commands</refmiscinfo>
3825         in <refmeta>.
3826
3827         * man/Attic/login.defs.5, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/shadow.5, man/Attic/suauth.5, man/login.defs.5.xml, man/passwd.5.xml, man/porttime.5.xml, man/shadow.5.xml, man/suauth.5.xml, man/Attic/login.access.5, man/limits.5.xml, man/login.access.5.xml, man/Attic/faillog.5, man/Attic/gshadow.5, man/Attic/limits.5, man/faillog.5.xml, man/gshadow.5.xml:
3828         added <refmiscinfo class="sectdesc">File Formats and Conversions</refmiscinfo>
3829         in <refmeta>.
3830
3831         * man/Attic/pwconv.8, man/Attic/suauth.5, man/Attic/vipw.8, man/pwconv.8.xml, man/suauth.5.xml, man/vipw.8.xml:
3832         remove <refentryinfo><date></date></refentryinfo> and <refmiscinfo class='date'> tags.
3833
3834         * man/Attic/newgrp.1, man/Attic/sg.1, man/newgrp.1.xml, man/sg.1.xml:
3835         added <refmiscinfo class="sectdesc">User Commands</refmiscinfo> tag.
3836
3837 2005-10-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
3838
3839         * NEWS, configure.in: start work on 4.0.14.
3840
3841 2005-10-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
3842
3843         * NEWS: move release 4.0.13 date to 10-10-2005.
3844
3845         * NEWS:  added infor about removed duplicated pam_start() in chage.
3846
3847         * NEWS: updated.
3848
3849         * man/Makefile.am: added sg.1.xml to man_XMANS.
3850
3851         * man/Attic/chage.1, man/chage.1.xml:
3852         cleanups (by Yuri Kozlov <kozlov.y@gmail.com>).
3853
3854         * man/Attic/newgrp.1, man/newgrp.1.xml:
3855         use <filename> in few more places.
3856
3857         * man/Attic/newgrp.1, man/newgrp.1.xml:
3858         better newgrp description (http://bugs.debian.org/325558).
3859
3860 2005-10-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
3861
3862         * src/chpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/newusers.c, src/useradd.c, src/userdel.c, src/usermod.c:
3863         remove using pam_chauthtok().
3864
3865         * src/chsh.c: finish PAM support using pam_start() & co.
3866
3867         * src/chage.c: remove using pam_chauthtok() on finish chage.
3868
3869         * src/chfn.c:
3870         use E_NOPERM in more places. remove using pam_chauthtok() on finish chfn.
3871
3872         * src/chfn.c: cleanups.
3873
3874         * src/chage.c:
3875         removed duplicaded not moved PAM code) was introduced during merge
3876         shadow-4.0.4.1-owl-pam-auth.diff patch).
3877
3878         * src/chfn.c: finish PAM support.
3879
3880 2005-10-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
3881
3882         * man/Attic/chfn.1, man/Attic/chsh.1, man/chfn.1.xml, man/chsh.1.xml:
3883         cleanups (by  Alexander Gattin <xrgtn@yandex.ru>).
3884
3885 2005-10-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
3886
3887         * NEWS, src/userdel.c:
3888         userdel should not remove the group which is primary for someone else (fix
3889         by Nicolas François <nicolas.francois@centraliens.net> http://bugs.debian.org/295416)
3890
3891 2005-10-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
3892
3893         * man/vipw.8.xml, man/Attic/chage.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/faillog.8, man/Attic/grpck.8, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/passwd.1, man/Attic/porttime.5, man/Attic/pw_auth.3.xml, man/Attic/shadow.3, man/Attic/su.1, man/Attic/suauth.5, man/chage.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/faillog.8.xml, man/groupmems.8.xml, man/grpck.8.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/passwd.1.xml, man/porttime.5.xml, man/shadow.3.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml:
3894         s/<emphasis remap='B'>/<emphasis>/
3895
3896         * man/Attic/sg.1, man/sg.1.xml: use <command> instead <emphasis>.
3897
3898         * man/newgrp.1.xml, man/sg.1.xml, man/chage.1.xml, man/chsh.1.xml, man/login.defs.5.xml:
3899         s/\.  /\. /
3900
3901         * man/Attic/shadow.5, man/shadow.5.xml:
3902         better document "!" and "*" fields in /etc/shadow
3903         (based on 441_manpages-shadow.5 patch from Debian).
3904
3905         * man/Attic/newgrp.1, man/newgrp.1.xml:
3906         SHADOWPWD was removed (always enabled)
3907         (based on 446_newgrp.1_no_SHADOWPWD patch from Debian).
3908
3909         * po/ru.po: updated for 4.0.13 (by Yuri Kozlov <kozlov.y@gmail.com>).
3910
3911 2005-09-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
3912
3913         * NEWS: cleanups.
3914
3915         * man/Attic/vipw.8, man/vipw.8.xml, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pw_auth.3.xml, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/chage.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newgrp.1.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml:
3916         next round of cleanups.
3917
3918         * man/Makefile.am: added rules for id.1, pw_auth.3 and sulogin.8.
3919
3920         * libmisc/setupenv.c:
3921         during the changes on libmisc/setupenv.c, a piece of code was moved
3922         without its comment (merge 449_comment_missplaced Debian patch).
3923
3924 2005-09-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
3925
3926         * man/Attic/chfn.1, man/Attic/chsh.1, man/Attic/groupadd.8, man/Attic/newusers.8, man/Attic/pwconv.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/chfn.1.xml, man/chsh.1.xml, man/groupadd.8.xml, man/newusers.8.xml, man/pwconv.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, NEWS:
3927         added missing references to /etc/login.defs and login.defs(5)
3928         (Christian Perrier <bubulle@kheops.frmug.org>).
3929
3930 2005-09-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
3931
3932         * NEWS: s/XSL/XSLT/
3933
3934         * po/pl.po: few updates.
3935
3936         * man/Attic/passwd.1, man/passwd.1.xml:
3937         -i option description is back (lost on rewrite and pointed by
3938         Miroslav Kure <kurem@upcase.inf.upol.cz>).
3939
3940         * po/cs.po:
3941         updated for 4.0.13 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
3942
3943 2005-09-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
3944
3945         * NEWS: updated.
3946
3947         * configure.in: fixes for correct handle --with{,out}-<feature>.
3948
3949         * configure.in:
3950         use @<:@ @:>@ instead ( ) inside AC_HELP_STRING() and s/feactures/features/
3951         (based on fixes by Mike Frysinger <vapier@gentoo.org>).
3952
3953         * po/da.po: updated for 4.0.13 (by Claus Hindsgaul <claus_h@image.dk>).
3954
3955         * po/es.po: updated for 4.0.13 (by Ruben Porras <nahoo@inicia.es>).
3956
3957 2005-09-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
3958
3959         * NEWS, libmisc/failure.c:
3960         use "%c" in strftime() output (based on patch from
3961         http://bugs.debian.org/89902 by Christian Perrier <bubulle@debian.org>)
3962
3963         * man/Attic/getspnam.3, man/Attic/shadow.3, man/shadow.3.xml:
3964         added <refname>getspnam</refname> to <refnamediv>.
3965
3966         * man/Attic/sg.1, man/sg.1.xml: fixed <cmdsynopsis>.
3967
3968         * man/Attic/sg.1, man/Makefile.am, man/sg.1.xml:
3969         added separated sg(1) man page.
3970
3971 2005-09-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
3972
3973         * lib/commonio.c, NEWS:
3974         don't assume selinux is enabled if is_selinux_enabled() returns -1
3975         (merge isSelinuxEnabled FC patch by Jeremy Katz <katzj@redhat.com>).
3976
3977         * po/ro.po: updated (by Sorin Batariuc <sorin@bonbon.net>).
3978
3979 2005-09-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
3980
3981         * NEWS: schedule release 4.0.13 to 03-10-2005.
3982
3983 2005-09-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
3984
3985         * NEWS, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8:
3986         regenerate all roff man pages using DocBook XSL Stylesheets 1.69.1.
3987
3988         * man/logoutd.8.xml: fixed id inside <refentry>.
3989
3990         * man/login.1.xml, man/logoutd.8.xml, man/newgrp.1.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/chage.1.xml, man/chfn.1.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml:
3991         added missing <para></para> inside <listitem> tags for pass correctly xmllint.
3992
3993         * man/Attic/login.access.5, man/login.access.5.xml:
3994         rewrited FILES section.
3995
3996         * man/login.access.5.xml: cleanups.
3997
3998 2005-09-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
3999
4000         * NEWS, man/Attic/passwd.5, man/passwd.5.xml:
4001         rewrited based on work by Greg Wooledge <greg@wooledge.org>
4002         http://bugs.debian.org/328113
4003
4004 2005-09-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
4005
4006         * po/ro.po: updates (by Sorin Batariuc <sorin@bonbon.net>).
4007
4008 2005-09-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
4009
4010         * src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/grpck.c, src/id.c, src/login.c, src/login_nopam.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/suauth.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c:
4011         remove empty lines after comment.
4012
4013         * src/useradd.c: group all #include.
4014
4015         * po/fr.po:
4016         updated (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
4017
4018 2005-09-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
4019
4020         * src/gpasswd.c: remove exit(1) after failure().
4021
4022         * src/usermod.c: consolidate few #ifdef WITH_AUDIT .. #endif sections.
4023
4024 2005-09-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
4025
4026         * src/Makefile.am: added missing $(LDADD) in gpasswd_LDADD.
4027
4028         * NEWS, libmisc/limits.c:
4029         fixed setup max address space limits (added missing break statement in case)
4030         spoted by Lasse Collin <lasse.collin@tukaani.org>
4031         (fix for non-PAM case)
4032
4033         * configure.in: try find and use by default feactures:
4034         with_audit="yes"
4035         with_libcrack="no"
4036         with_libpam="yes"
4037         with_libskey="no"
4038         with_selinux="yes"
4039         Report on finish also S/Key and CrackLib support.
4040
4041         * configure.in: cleanups.
4042
4043         * src/Makefile.am: sort *_LDADD.
4044
4045         * src/Makefile.am: added missing gpasswd_LDADD = $(LIBAUDIT).
4046
4047         * src/groupadd.c, src/groupdel.c, src/groupmod.c, src/useradd.c, src/userdel.c, src/usermod.c, lib/defines.h, lib/prototypes.h, src/chage.c, src/gpasswd.c:
4048         indent code.
4049
4050         * libmisc/Makefile.am: sort libmisc_a_SOURCES elements.
4051
4052         * libmisc/audit_help.c: added shadow copyright text and indent file.
4053
4054         * libmisc/audit_help.c:
4055         patr of auditing support not added on commiting audit changes.
4056
4057         * src/Makefile.am: s/AUDIT/LIBAUDIT/
4058
4059         * configure.in: added reporting on finish is auditing is enabled.
4060         Change to use shared libaudit. Aded missing AC_SUBST(LIBAUDIT).
4061         Break some to log lines.
4062
4063         * src/Makefile.am, src/chage.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/useradd.c, src/userdel.c, src/usermod.c, NEWS, configure.in, lib/defines.h, lib/prototypes.h, libmisc/Makefile.am:
4064         auditing support added. Patch prepared by Peter Vrabec
4065         <pvrabec@redhat.com> basing on work by Steve Grubb from
4066         http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=159215 Now auditing
4067         support have commands: chage, gpasswd, groupadd, groupdel, groupmod,
4068         useradd, userdel, usermod.
4069
4070         * po/pt.po: finish update (by Christian Perrier <bubulle@debian.org>).
4071
4072 2005-09-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
4073
4074         * po/pt.po, NEWS: updated (by Miguel Figueiredo <elmig@debianpt.org>).
4075
4076 2005-09-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
4077
4078         * src/passwd.c:
4079         fix warning (initialization makes pointer from integer without a cast) in
4080         long_options[] entry.
4081
4082         * po/fr.po, NEWS:
4083         partialy updated (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
4084
4085 2005-09-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
4086
4087         * src/chage.c: indent source sode.
4088
4089         * src/chage.c, src/chfn.c, src/chsh.c, src/passwd.c, NEWS:
4090         change to use new selinux API for selinux_check_passwd_access()
4091         (patch from Fedora by Dan Walsh <dwalsh@redhat.com>).
4092
4093 2005-09-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
4094
4095         * man/Attic/newgrp.1, man/newgrp.1.xml: finished rewrite.
4096
4097         * etc/login.defs: moved from login.defs.linux.
4098
4099         * src/login_nopam.c: use #ident.
4100
4101         * etc/Attic/login.defs.hurd, etc/Attic/login.defs.linux, etc/Makefile.am:
4102         remove login.defs.hurd and login.defs.linux.
4103
4104         * src/groupadd.c, src/useradd.c:
4105         as same as in man pages to useradd and groupadd change to 1000 default
4106         GID_MIN and UID_MIN (if not found in login.defs).
4107
4108         * etc/login.defs: s/chkpasswd/chpasswd/
4109
4110 2005-08-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
4111
4112         * man/Makefile.am, man/chsh.1.xml, man/limits.5.xml, man/login.access.5.xml, man/newgrp.1.xml, man/newusers.8.xml:
4113         fixed id= in <refentry>.
4114
4115         * man/Attic/gpasswd.1, man/gpasswd.1.xml:
4116         fixed refentry id (must be 'gpasswd.1').
4117
4118         * man/Makefile.am, man/newgrp.1.xml:
4119         raw version converted from roff using doclifter.
4120
4121         * lib/exitcodes.h: new exit codes:
4122         #define E_PASSWD_NOTFOUND       14      /* not found password file */
4123         #define E_GROUP_NOTFOUND        16      /* not found group file */
4124         #define E_GSHADOW_NOTFOUND      17      /* not found shadow group file */
4125
4126         * man/Attic/chage.1, man/chage.1.xml, lib/exitcodes.h:
4127         change to 15 (from 14) exit code in chage when shadow not found.
4128
4129         * src/Attic/chsh_chkshell.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/login_nopam.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c, libmisc/pwd_init.c, libmisc/pwdcheck.c, libmisc/rlogin.c, libmisc/salt.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/strtoday.c, libmisc/sub.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/tz.c, libmisc/ulimit.c, libmisc/utmp.c, libmisc/valid.c, libmisc/xmalloc.c, libmisc/addgrps.c, libmisc/age.c, libmisc/basename.c, libmisc/chkname.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, libmisc/copydir.c, libmisc/entry.c, libmisc/env.c, libmisc/failure.c, libmisc/fields.c, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/list.c, libmisc/log.c, libmisc/loginprompt.c, libmisc/mail.c, libmisc/motd.c, libmisc/myname.c, libmisc/obscure.c, libmisc/pam_pass.c, libmisc/pwd2spwd.c, NEWS, lib/Attic/getpass.c, lib/Attic/rcsid.h, lib/Makefile.am, lib/commonio.c, lib/encrypt.c, lib/fputsx.c, lib/getdef.c, lib/groupio.c, lib/gshadow.c, lib/lockpw.c, lib/port.c, lib/pwauth.c, lib/pwio.c, lib/sgetgrent.c, lib/sgetpwent.c, lib/sgetspent.c, lib/sgroupio.c, lib/shadow.c, lib/shadowio.c:
4130         use #ident preprocesor directive istead RCID macro with content similar
4131         to example described in ident(1) man page (modern compilers like latest GCC
4132         removes not used functions by global optimization).
4133         So "ident /usr/bin/passwd" will show again some useable informations.
4134
4135         * man/Makefile.am: added support for regenerate roff files from XML.
4136         Added depeing shadow-man-pages.pot on $(man_XMANS).
4137
4138 2005-08-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
4139
4140         * man/Attic/login.1, man/login.1.xml, NEWS:
4141         added securetty(5) to SEE ALSO section (fixed Debian bug http://bugs.debian.org/325773).
4142
4143         * po/pl.po: more updates.
4144
4145         * configure.in:
4146         typo in handle --with-selinux. Fixes in xsltproc detection.
4147
4148         * autogen.sh:
4149         added --enable-man and --enable-maintainer-mode to configure options.
4150
4151         * man/Attic/chage.1, man/chage.1.xml, NEWS:
4152         added EXIT VALUES section (by Nicolas François <nicolas.francois@centraliens.net>).
4153
4154         * man/Attic/passwd.1, man/passwd.1.xml:
4155         remove "Password expiry information" section (all options are described now
4156         in OPTIONS section). Describe -a and -k options.
4157
4158         * NEWS, src/su.c:
4159         fixed twice copy enviroment which causes auth problems (bug was introduced in 4.0.12;
4160         fix by Nicolas François <nicolas.francois@centraliens.net>).
4161
4162         * src/passwd.c, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po:
4163         s/Incorrect password for `%s'/Incorrect password for %s/ (one phrase for translate less).
4164
4165         * src/login.c, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po:
4166         s/login: failure forking: %s/%s: failure forking: %s/ (one phrase for translate less).
4167
4168         * po/pl.po: partialy updated.
4169
4170 2005-08-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
4171
4172         * lib/exitcodes.h, src/chage.c:
4173         s/E_NOT_SHADOWED/E_SHADOW_NOTFOUND/ and change value of this exit code to 14.
4174
4175         * NEWS, lib/exitcodes.h, src/chage.c:
4176         differentiate the different failure causes by the exit value
4177         This will permit to adduser Debian script to detect if chage failed because the
4178         system doesn't have shadowed passwords (fix for http://bugs.debian.org/317012)
4179         Plain merge 443_chage_exit_values Debian patch.
4180
4181         * man/Attic/pw_auth.3.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml, man/chage.1.xml, man/chfn.1.xml:
4182         use tabs in indentation (~10KB less in all xml files).
4183
4184         * po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po:
4185         run "make update-po" and remove obsoleted strings.
4186
4187         * src/expiry.c, src/login.c: remove #if 0 .. #endif code.
4188
4189         * src/login.c: remove #if 1 .. #endif.
4190
4191         * libmisc/obscure.c, libmisc/utmp.c, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, src/chage.c, src/login.c, src/logoutd.c, src/newgrp.c, src/su.c, src/useradd.c, NEWS:
4192         merge 010_more-i18ned-messages Debian patch which adds i18n support for few more messages
4193         (orginaly patch was prepared by Guillem Jover <guillem@debian.org>).
4194
4195         * man/id/chsh.1:
4196         fix .SH (fix merged from 207_id-manpages debian patch).
4197
4198 2005-08-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
4199
4200         * acinclude.m4: add aclocal macros (based on acinclude.m4 from glib):
4201         JH_PATH_XML_CATALOG: checks the location of the XML Catalog,
4202         JH_CHECK_XML_CATALOG: checks if a particular URI appears in the XML catalog.
4203
4204         * man/Attic/useradd.8, man/useradd.8.xml:
4205         cleanups in "Changing the default values" section.
4206
4207         * man/useradd.8.xml:
4208         replace <emphasis remap='I'></emphasis> by <replaceable></replaceable>.
4209         Other minor cleanups.
4210
4211         * configure.in:
4212         fixed missing )] in AC_ARG_WITH(skey, ..) (thank for fix to Yuri Kozlov <kozlov.y@gmail.com>).
4213
4214         * man/Attic/chsh.1, man/Attic/faillog.5, man/Attic/gshadow.5, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pw_auth.3.xml, man/Attic/shadow.3, man/Attic/suauth.5, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/chsh.1.xml, man/faillog.8.xml, man/groupadd.8.xml, man/gshadow.5.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/porttime.5.xml, man/shadow.3.xml, man/suauth.5.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml:
4215         typos, and change some arguments so they do not match the name of a
4216         command (fixes by Nicolas François <nicolas.francois@centraliens.net>).
4217
4218         * NEWS, libmisc/chkname.c, man/Attic/groupadd.8, man/Attic/useradd.8, man/groupadd.8.xml, man/useradd.8.xml:
4219         fix regular expression describing alloved login/group names (pointed
4220         by Nicolas François <nicolas.francois@centraliens.net>)
4221         (correct is [a-z_][a-z0-9_-]*[$]).
4222
4223         * man/Attic/useradd.8, man/useradd.8.xml:
4224         remove "Creating New Users" section and merge this directly in DESCRIPTION.
4225         Add <option></option> for -o in EXIT VALUES section.
4226
4227         * po/ru.po, NEWS:
4228         update ru translations (by Yuri Kozlov <kozlov.y@gmail.com>).
4229
4230 2005-08-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
4231
4232         * man/Attic/passwd.1, man/passwd.1.xml:
4233         removed "Account maintenance" section.
4234
4235         * man/Attic/passwd.1, man/passwd.1.xml: partialy done rewrite.
4236
4237         * po/ro.po:
4238         some fixes after review of the translation (by Sorin Batariuc <sorin@bonbon.net>).
4239
4240         * man/Attic/lastlog.8, man/lastlog.8.xml:
4241         s/Print help message and exit./Display help message and exit./
4242
4243         * man/Attic/chage.1, man/chage.1.xml: document -h,--help option.
4244
4245         * man/Attic/groupadd.8, man/groupadd.8.xml:
4246         document -h,--help option. added <option></option> for -o in EXIT VALUES.
4247         Cleanups in SYNOPSIS section.
4248
4249         * man/Attic/chage.1, man/Attic/faillog.8, man/chage.1.xml, man/faillog.8.xml:
4250         replace <emphasis remap='I'></emphasis> by <replaceable></replaceable>.
4251
4252         * man/Attic/lastlog.8, man/lastlog.8.xml:
4253         document new -b,--before option.
4254
4255         * po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/it.po, po/ja.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/el.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, src/lastlog.c:
4256         s/lastlog results/lastlog records/ in lastlog usage output.
4257
4258         * man/Attic/lastlog.8, man/lastlog.8.xml:
4259         add "" aroud <command></command>.
4260
4261         * po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, src/lastlog.c:
4262         alphabetic order options in lastlog usage output. Run "make -C po update-po".
4263
4264         * src/lastlog.c, NEWS:
4265         added handle -b option which allow print only lastlog records older than
4266         specified DAYS (fix by <miles@lubin.us>).
4267
4268         * libmisc/salt.c, NEWS:
4269         fixed for use login.defs::MD5_CRYPT_ENAB only if PAM support
4270         is disabled (fix by John Gatewood Ham <zappaman@buraphalinux.org>).
4271
4272 2005-08-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
4273
4274         * configure.in:
4275         use AC_HELP_STRING() in AC_ARG_ENABLE() and AC_ARG_WITH().
4276         Exit with error message if configure was runed --with-selinux
4277         and libselinux not found.
4278
4279 2005-08-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
4280
4281         * libmisc/chkname.c, NEWS, man/Attic/groupadd.8, man/Attic/useradd.8, man/groupadd.8.xml, man/useradd.8.xml:
4282         documents in CAVEATS section the limitations shadow places on user and
4283         group names (fix by Mike Frysinger <vapier@gentoo.org>).
4284
4285         * src/passwd.c, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
4286         added missing -i, --inactive in usage() output.
4287
4288 2005-08-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
4289
4290         * po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, src/passwd.c, NEWS:
4291         passwd rewrited for use getopt_long().
4292
4293         * man/Attic/chage.1, man/chage.1.xml: /warndays/--warndays/
4294
4295         * man/Attic/pw_auth.3.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml, man/chage.1.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml:
4296         remove trailing spaces.
4297
4298         * src/lastlog.c, src/login.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/suauth.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c, src/Attic/chsh_chkshell.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmems.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/id.c:
4299         reorder #includes, indentations and minor cleanups.
4300
4301         * src/newgrp.c: indent code.
4302
4303         * NEWS, src/newgrp.c:
4304         when newgrp process sits between parent and child shells, it should
4305         propagate STOPs from child to parent and CONTs from parent to child,
4306         otherwise e.g. bash's "suspend" command won't work.
4307         Fixed Debian http://bugs.debian.org/314727
4308
4309 2005-08-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
4310
4311         * configure.in: typo.
4312
4313         * configure.in:
4314         add display short summary information on finish autoconf script.
4315
4316         * NEWS, configure.in: start work on 4.0.13.
4317
4318 2005-08-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
4319
4320         * po/ru.po: updated for 4.0.12 (by Yuri Kozlov <yuray@id.ru>).
4321
4322         * NEWS, po/sk.po:
4323         updated for 4.0.12 (by Peter Mann <Peter.Mann@tuke.sk>).
4324
4325 2005-08-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
4326
4327         * po/nl.po, NEWS:
4328         updated for 4.0.12 (by cobaco (aka Bart Cornelis) <cobaco@linux.be>).
4329
4330 2005-08-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
4331
4332         * NEWS, po/fi.po:
4333         updated for 4.0.12 (by Tommi Vainikainen <thv+debian@iki.fi>).
4334
4335         * NEWS, po/de.po:
4336         updated for 4.0.12 (by Frank Schmid <frank@cs-schmid.de>).
4337
4338         * po/pt.po, NEWS:
4339         updated for 4.0.12 (by Miguel Figueiredo <elmig@debianpt.org>).
4340
4341 2005-08-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
4342
4343         * po/cs.po:
4344         updated for 4.0.12 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
4345
4346         * src/chpasswd.c, src/groupdel.c, src/newusers.c, src/useradd.c, src/userdel.c, src/usermod.c:
4347         remove duplicated #include <pwd.h>.
4348
4349         * po/pl.po: finished update for 4.0.12.
4350
4351         * src/useradd.c, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po:
4352         s/Not copying any file into it./Not copying any file from skel directory into it./
4353
4354         * src/useradd.c, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po:
4355         break warning message longer than 80 characters.
4356
4357         * po/pl.po: updated.
4358
4359         * src/groupadd.c, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po:
4360         fixed missing \n in usage() output.
4361
4362         * lib/getdef.c, src/login.c, src/newgrp.c, NEWS:
4363         remove using login.defs::CLOSE_SESSIONS variable and allways close PAM session.
4364
4365 2005-08-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
4366
4367         * NEWS, configure.in:
4368         realy enable shadow group support by default (pointed by
4369         Greg Schafer <gschafer@zip.com.au> and Peter Vrabec <pvrabec@redhat.com>).
4370         Indentations in --help output.
4371
4372         * man/Attic/chage.1, man/chage.1.xml:
4373         s/occurrence/occurence/ (334_chage.1-typo Debian patch).
4374
4375         * man/Attic/chfn.1, man/chfn.1.xml:
4376         s/may only change may only change/may only change/ (based on 336_chfn.1 Debian patch).
4377
4378         * man/it/Makefile.am: cleanups (443_man_it_Makefile.am Debian patch).
4379
4380         * man/Attic/userdel.8, man/userdel.8.xml: s/an NIS client/a NIS client/
4381
4382         * man/Attic/useradd.8, man/useradd.8.xml: s/an NIS group/a NIS group/
4383
4384         * man/Attic/lastlog.8, man/lastlog.8.xml:
4385         s/you have an high UID/you have a high UID/
4386
4387         * man/Attic/lastlog.8, man/lastlog.8.xml:
4388         added missing <para></para> in AUTHORS section (cached by Nicolas).
4389
4390         * po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
4391         run "make update-po".
4392
4393         * po/POTFILES.in: added missing libmisc/pwdcheck.c. Sorted.
4394
4395 2005-08-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
4396
4397         * NEWS: s/22-07-2005/22-08-2005/
4398
4399         * NEWS: schedule release 4.0.12 in 22-07-2005.
4400
4401         * libmisc/setupenv.c, man/pl/login.defs.5, NEWS, etc/Attic/login.defs.hurd, etc/Attic/login.defs.linux, lib/getdef.c:
4402         removed handle login.defs::QMAIL_DIR variable.
4403
4404         * libmisc/chowntty.c, NEWS:
4405         allow regular user to login on read-only root file system (not only for root).
4406         Patch by Nicolas François <nicolas.francois@centraliens.net>
4407         Fix for http://bugs.debian.org/52069
4408
4409         * NEWS, man/Attic/usermod.8, man/usermod.8.xml:
4410         give the correct range for system users: 0-999 instead of 0-99
4411         (http://bugs.debian.org/286258)
4412
4413         * man/Attic/chage.1, man/chage.1.xml: s/an password/a password/
4414
4415         * man/Attic/chage.1, man/chage.1.xml, src/chage.c, NEWS:
4416         another maxdays fix based on 427_chage_expiry_0 Debian patch
4417         (fix for http://bugs.debian.org/78961).
4418         Better description -1 value passed in -E, -I and -M options.
4419
4420         * src/gpasswd.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, NEWS:
4421         added flushing group nscd cache on exit.
4422
4423         * src/pwck.c, src/pwconv.c, NEWS:
4424         added flushing passwd nscd cache on exit.
4425
4426         * NEWS, src/usermod.c:
4427         fixed handle -p option (patch by Peter Vrabec <pvrabec@redhat.com>).
4428         Indented.
4429
4430         * man/Attic/chage.1, man/chage.1.xml, NEWS, src/chage.c:
4431         use -1 as value for disable password inactivity.
4432         Patch by Peter Vrabec <pvrabec@redhat.com> which fixes:
4433         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=109499
4434         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=137498
4435
4436 2005-08-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
4437
4438         * src/useradd.c, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po:
4439         do not copy files from skel directory if home directory exist and write
4440         warning message about not copying skel files.
4441         Patch by Peter Vrabec <pvrabec@redhat.com> which fixes:
4442         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=143150
4443         https://bugzilla.redhat.com/beta/show_bug.cgi?id=158574
4444         https://bugzilla.redhat.com/beta/show_bug.cgi?id=80242
4445
4446         * po/pl.po: updated.
4447
4448 2005-08-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
4449
4450         * src/useradd.c:
4451         s/spoll/spool/ (spoted by Nicolas François <nicolas.francois@centraliens.net>).
4452
4453 2005-08-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
4454
4455         * NEWS, src/su.c:
4456         ignore SIGINT while authenticating. A ^C could defeat the waiting
4457         period and permit brute-force attacks (fixed http://bugs.debian.org/288827).
4458
4459 2005-08-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
4460
4461         * lib/defines.h, NEWS, configure.in:
4462         added require ngettext (added [need-ngettext] to AM_GNU_GETTEXT() parameters)
4463         and stub prototype for ngettext() in lib/prototypes.h (neccessary if shadow
4464         compiled with disabled NLS support)
4465         Based on fixes by Martin Schlemmer <azarah@nosferatu.za.org>.
4466
4467         * src/faillog.c: start using exitcodes.h.
4468
4469         * NEWS, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8, man/logoutd.8.xml, man/shadow.3.xml, man/sulogin.8.xml:
4470         regenerate all roff man pages using DocBook XSL Stylesheets 1.69.0.
4471
4472         * src/chage.c, src/chpasswd.c, src/newusers.c, src/passwd.c, src/pwunconv.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c, NEWS:
4473         remove flushing shadow nscd cache (nscd do not caches shadow map).
4474
4475 2005-08-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
4476
4477         * src/groupadd.c, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, NEWS:
4478         rewrited groupadd for use getopt_long().
4479
4480         * src/chage.c: indent.
4481
4482         * NEWS, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/userdel.c:
4483         do OPENLOG() before pam_start().
4484
4485         * NEWS, src/groupadd.c: fixed double OPENLOG().
4486
4487         * src/passwd.c, src/vipw.c, src/userdel.c: reorder nscd_flush_cache().
4488
4489         * src/chfn.c, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po:
4490         cleanups in printf() translated messages for make translators work easier.
4491
4492         * NEWS, src/chage.c: added flushing NSS shadow map on exit.
4493
4494         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, src/useradd.c:
4495         s/the the/the/
4496
4497         * po/POTFILES.in: removed lib/{grpack,gspack,pwpack,sppack}.c.
4498
4499         * NEWS, src/newusers.c:
4500         added flushing NSS passwd, shadow and group maps.
4501
4502         * NEWS, src/chpasswd.c, src/useradd.c:
4503         added flushing NSS shadow map on exit.
4504
4505         * lib/prototypes.h: removed outdated prototypes for lib/gsdbm.c.
4506
4507         * NEWS, lib/Attic/grpack.c, lib/Attic/gspack.c, lib/Attic/pwpack.c, lib/Attic/sppack.c, lib/Makefile.am, lib/prototypes.h:
4508         remove lib/{grpack,gspack,pwpack,sppack}.c and prototypes from lib/prototypes.h (outdated).
4509
4510         * lib/prototypes.h: removed outdated prototypes from lib/pwdbm.c.
4511
4512 2005-07-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
4513
4514         * NEWS, src/usermod.c: added flushing NSS shadow map.
4515
4516 2005-07-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
4517
4518         * man/Attic/chage.1, man/chage.1.xml:
4519         typo (s/passwordchanges/password changes/).
4520
4521 2005-07-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
4522
4523         * lib/getdef.c, src/su.c:
4524         ENV_SUPATH and ENV_PATH must be used independently to PAM.
4525
4526         * lib/exitcodes.h: added E_BAD_ARG.
4527
4528         * src/gpasswd.c: start use exitcodes.h.
4529
4530         * lib/getdef.c: remove ENV_ROOTPATH def_table[] (not used).
4531
4532 2005-07-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
4533
4534         * src/chsh.c: start use exitcodes.h.
4535
4536 2005-07-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
4537
4538         * po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/Makevars, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po:
4539         added --no-location to po/Makevars::XGETTEXT_OPTIONS: shorter .po files.
4540
4541         * NEWS, src/grpck.c, src/pwck.c:
4542         pwck: now pwck OPENLOG with correct name ("pwck" instead "pwsk"),
4543         pwck, grpck: replace all puts() with printf() - it fixes problems with extra blank
4544         lines printed in some messages
4545         (fixes by Alexander Gattin <arg@online.com.ua>)
4546
4547 2005-07-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
4548
4549         * po/Makevars: added:
4550         MSGID_BUGS_ADDRESS = kloczek@pld.org.pl
4551
4552 2005-07-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
4553
4554         * src/chfn.c: start use #include "exitcodes.h",
4555
4556         * lib/exitcodes.h: cleanups.
4557
4558         * lib/Makefile.am, lib/exitcodes.h, src/chage.c:
4559         start separate all E_* exit codes to lib/exitcodes.h.
4560
4561         * src/passwd.c, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po:
4562         use separated message "Password set to expire." instead "Password changed."
4563         on "passwd -e" (fix by Christian Perrier <bubulle@debian.org>).
4564
4565         * NEWS, po/fr.po:
4566         updated (by Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>).
4567
4568         * NEWS, configure.in: start work on 4.0.12.
4569
4570 2005-07-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
4571
4572         * po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, configure.in, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po:
4573         4.0.11.1 will be released tmorrow (21-07-2005).
4574
4575         * configure.in, NEWS:
4576         fixed configure.in: now is possible build shadow with enabled/disabled shadow group
4577         support (thanks for report symptoms of the bug to Greg Schafer <gschafer@zip.com.au>).
4578
4579         * po/sv.po, NEWS: update finished (by Per Olofsson <pelle@dsv.su.se>)
4580
4581         * po/sv.po: partialy updated (by Per Olofsson <pelle@dsv.su.se>).
4582
4583 2005-07-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
4584
4585         * NEWS, configure.in: start work on 4.0.12.
4586
4587 2005-07-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
4588
4589         * libmisc/sub.c:
4590         fixed compilation warning about incompatible implicit declaration of built-in
4591         function printf: added "#include <stdio.h>".
4592
4593         * src/groupadd.c:
4594         move #ifdef USE_PAM .. #endif #includes outside #ifdef SHADOWGRP .. #endif.
4595
4596         * libmisc/pwdcheck.c:
4597         added missing "#include <stdio.h>" (fix compilation with PAM disabled).
4598
4599         * po/ro.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/pl.po, po/pt_BR.po, po/nl.po, po/nn.po, po/nb.po, po/ko.po, po/ja.po, po/it.po, po/he.po, po/id.po, po/fr.po, po/bs.po, po/ca.po, po/da.po, po/el.po, po/es.po, po/eu.po, po/fi.po:
4600         run "make update-po".
4601
4602         * src/su.c:
4603         move declaration of pamh nad caught variables to #ifdef USE_PAM .. #endif.
4604
4605         * po/pl.po, NEWS: updated pl translation.
4606
4607 2005-07-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
4608
4609         * NEWS, po/sk.po:
4610         updated for 4.0.11 (by Peter Mann <Peter.Mann@tuke.sk>).
4611
4612 2005-07-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
4613
4614         * NEWS, po/cs.po:
4615         updated for 4.0.11 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
4616
4617 2005-07-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
4618
4619         * po/de.po, NEWS:
4620         updated for 4.0.11 (by Frank Schmid <frank@cs-schmid.de>).
4621
4622 2005-07-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
4623
4624         * NEWS, po/pt.po:
4625         updated for 4.0.11 (by Miguel Figueiredo <elmig@debianpt.org>).
4626
4627 2005-07-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
4628
4629         * po/stats: reorder gsub().
4630
4631         * po/ru.po: cleanups.
4632
4633         * po/ru.po, NEWS:
4634         updated for 4.0.11 (by Yuri Kozlov <yucoz@yandex.ru>).
4635
4636 2005-07-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
4637
4638         * lib/getdef.c:
4639         move MAIL_DIR variable from def_table[] to part independent to USE_PAM
4640         (still used in userdel/usermod).
4641
4642         * NEWS, man/Attic/pwck.8, man/pwck.8.xml:
4643         document -q option (based on Debian patch for fix http://bugs.debian.org/309408)
4644         Rewrited OPTIONS section and better SYNOPSIS.
4645
4646         * NEWS, po/da.po:
4647         - updated for 4.0.11 (by Claus Hindsgaul <claus_h@image.dk>).
4648
4649         * NEWS, src/su.c:
4650         ignore SIGINT while authenticating. A ^C could defeat the waiting period and
4651         permit brute-force attacks. Also ignore SIGQUIT.
4652         Fixed: http://bugs.debian.org/52372 and http://bugs.debian.org/288827
4653
4654         * po/fi.po, NEWS:
4655         - updated for 4.0.11 (by Tommi Vainikainen <thv+debian@iki.fi>).
4656
4657         * po/ro.po: - updated Project-Id-Version field.
4658
4659         * NEWS, po/ro.po:
4660         - updated for 4.0.11 (by Sorin B. <sorin@bonbon.net>).
4661
4662 2005-07-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
4663
4664         * NEWS, man/Attic/lastlog.8, man/lastlog.8.xml:
4665         document that lastlog is a sparse file, and don't need to be rotated.
4666         http://bugs.debian.org/219321
4667
4668         * src/chage.c: use E_USAGE=2 as usage() exit code.
4669
4670         * NEWS, po/es.po:
4671         updated for 4.0.11 (by Ruben Porras <nahoo82@telefonica.net>).
4672
4673         * src/useradd.c: cleanups in usage() oyput.
4674
4675         * po/zh_TW.po, po/vi.po, po/zh_CN.po, po/uk.po, po/tl.po, po/tr.po, po/sv.po, po/sq.po, po/sk.po, po/ro.po, po/ru.po, po/pt.po, po/pt_BR.po, po/pl.po, po/nb.po, po/nl.po, po/nn.po, po/ko.po, po/it.po, po/ja.po, po/he.po, po/id.po, po/fr.po, po/eu.po, po/fi.po, po/es.po, po/da.po, po/de.po, po/el.po, po/bs.po, po/ca.po, po/cs.po:
4676         cleanups in usage() output.
4677
4678         * NEWS: release 4.0.11 is sheduled to 18-06-2005.
4679
4680 2005-07-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
4681
4682         * man/Attic/login.1, man/login.1.xml, NEWS:
4683         better explain the respective roles of login, init and getty with regards
4684         to the utmp file (based on 441_manpages-shadow.5 Debian patch)
4685
4686         * man/Attic/su.1, man/groupdel.8.xml, man/su.1.xml, man/Attic/groupdel.8:
4687         s/presense/presence/; s/filesystem/file system/
4688         (sed on 440_manpages-login.1 Debian patch)
4689
4690         * man/pl/Attic/shadowconfig.8, man/pl/Makefile.am, man/ja/Attic/shadowconfig.8, man/ja/Makefile.am, man/it/Attic/shadowconfig.8, man/Attic/shadowconfig.8, man/Attic/shadowconfig.8.xml, man/Makefile.am, NEWS:
4691         removed shadowconfig(8) man page (will be maintained in Debian shadow pkg repository).
4692
4693         * man/it/sg.1: added.
4694
4695         * man/it/Makefile.am: more files in man_MANS.
4696
4697         * man/it/Makefile.am: move pwunconv.8 to man_MANS.
4698
4699         * man/useradd.8.xml, man/Attic/useradd.8:
4700         updated after rewrite for for getopt_long() in useradd (-D and -k options
4701         idescription must be finished).
4702
4703         * src/useradd.c, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, NEWS:
4704         rewrited for use getopt_long().
4705
4706         * po/stats: more gsub().
4707
4708 2005-07-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
4709
4710         * src/newgrp.c:
4711         indent source code and use fix for handle splitted groups unconditionaly.
4712
4713         * lib/nscd.c: indent.
4714
4715         * NEWS, src/newgrp.c:
4716         add fix for handle splitted NIS groups: extends the functionality that,
4717         if the requested group is given, all groups of the same GID are tested for
4718         membership of the requesting user.
4719         (fix by Christian Mudra <C.Mudra@science-computing.de>
4720
4721         * lib/nscd.c, NEWS:
4722         for some reason doing the INVALIDATE call with two write()'s fails.
4723         Do one writev() call instead. http://bugs.gentoo.org/show_bug.cgi?id=80413
4724         (submited by Martin Schlemmer <azarah@gentoo.org>)
4725
4726         * NEWS, lib/nscd.c:
4727         merge nscd-socket-path patch from Fedora: newer glibc's have a different nscd socket
4728         location (/var/run/nscd/socket instead /var/run/.nscd_socket).
4729
4730 2005-07-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
4731
4732         * po/stats: improved.
4733
4734         * man/Attic/groupadd.8, man/groupadd.8.xml, NEWS:
4735         document -o option in groupadd(8).
4736
4737         * configure.in: s/'"$<foo>" != "no"'/'"$<foo>" = "yes"'/
4738
4739         * NEWS, configure.in, lib/Makefile.am, lib/pwauth.c:
4740         S/Key support is back.
4741
4742         * po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po:
4743         run "make update-po".
4744
4745         * po/pl.po: updated.
4746
4747         * src/useradd.c: s,key=value,KEY=VALUE,
4748
4749         * src/groupadd.c, NEWS, man/Attic/groupadd.8, man/groupadd.8.xml:
4750         change -O option to -K and document it in man page.
4751
4752         * man/Attic/useradd.8, man/useradd.8.xml, src/useradd.c:
4753         s/NAME=VALUE/KEY=VALUE/; s/key=value/KEY=VALUE/
4754
4755         * src/chfn.c, src/groupadd.c, src/groupmems.c, src/login.c, src/passwd.c, src/vipw.c:
4756         sort cases in switch (flag) {}.
4757
4758         * src/gpasswd.c, src/groupadd.c, src/groupmems.c, src/groupmod.c, src/passwd.c, src/useradd.c, src/usermod.c:
4759         sort getopt() optstring.
4760
4761         * src/useradd.c:
4762         remove A: from getopt() optstring (the same bug as in usermod).
4763
4764         * src/usermod.c:
4765         remove A: from getopt() optstring (it was for handle AUTH_METHODS code but now
4766         it is not used option). Catched by Thorsten Kukuk <kukuk@suse.de>.
4767
4768         * src/usermod.c, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po:
4769         indent source code. Added usermod error message about -a option usage to translated messages.
4770
4771         * po/POTFILES.in: mistake s,chage_chkshell.c,chsh_chkshell.c,
4772
4773         * po/POTFILES.in: s,libmisc/chkshell.c,src/chage_chkshell.c,
4774
4775         * man/Attic/usermod.8, man/usermod.8.xml, src/usermod.c, NEWS:
4776         added -a option. This flag can only be used in conjunction with the -G
4777         option. It cause usermod to append user to the current supplementary group list.
4778         (patch by Peter Vrabec <pvrabec@redhat.com>)
4779
4780         * libmisc/Attic/chkshell.c, libmisc/Makefile.am, src/Attic/chsh_chkshell.c, src/Makefile.am:
4781         move libmisc/chkshell.c to src/chsh_chkshell.c. check_shell() is used only by chsh.
4782
4783 2005-07-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
4784
4785         * Attic/acconfig.h, NEWS, configure.in:
4786         finish move all autoheader templates from acconfig.h to configure.in.
4787
4788         * src/chage.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS:
4789         added missing \n in chage error messages.
4790
4791         * po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/bs.po:
4792         run "make update-po".
4793
4794         * src/usermod.c: move all #include in one place.
4795
4796         * src/useradd.c: s/-O/-K/
4797
4798         * man/Attic/useradd.8, man/useradd.8.xml:
4799         cleanups in Note: in -K description.
4800
4801         * NEWS, man/Attic/useradd.8, man/useradd.8.xml, src/useradd.c:
4802         change -O option to -K and document it in man page.
4803
4804         * man/Attic/useradd.8, man/useradd.8.xml:
4805         added separated <cmdsynopsis></cmdsynopsis> for -D description and remove using </srb> tags from
4806         <refsynopsisdiv id='synopsis'>.
4807
4808         * src/login.c:
4809         replace #ifdef USE_PAM .. #endif #ifndef USE_PAN .. #endif by
4810         #ifdef USE_PAM .. #else .. #endif.
4811
4812         * src/su.c: conditiona code reorganization.
4813
4814         * src/login.c: remove one #ifndef USE_PAM .. #endif.
4815
4816         * libmisc/setupenv.c: move setup $MAIL to !USE_PAM.
4817
4818         * libmisc/setupenv.c, src/su.c:
4819         consolidate two sections of code #ifndef USE_PAM to one.
4820
4821         * src/su.c, src/sulogin.c, libmisc/setupenv.c, libmisc/tz.c, src/login.c, NEWS:
4822         fixed erroneous warning messages about some login.defs variables when used with PAM
4823         (fix by DJ Lucas <dj@linuxfromscratch.org>)
4824
4825 2005-07-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
4826
4827         * configure.in, libmisc/getdate.y, libmisc/utmp.c, src/logoutd.c:
4828         remove non-USG code.
4829
4830         * Attic/acconfig.h, configure.in:
4831         start moving all autoheader templates from acconfig.h to configure.in.
4832
4833         * configure.in: remove not used AC_DEFINE(HAVE_LIBCRYPT).
4834
4835         * Attic/acconfig.h, NEWS, configure.in:
4836         stop with error message if crypt() not found. Remove --with{,out}-libcrypt switch.
4837
4838         * src/login.c: fixed use SYSLOG macro.
4839
4840 2005-07-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
4841
4842         * src/login_nopam.c: fixed use SYSLOG macro.
4843
4844 2005-07-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
4845
4846         * NEWS, src/login.c:
4847         setup limits and umask (using login.defs ULIMITS and UMASK variables) only when
4848         PAM support is disabled (it is task for pam_limits and pam_umask modules).
4849
4850 2005-06-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
4851
4852         * src/sulogin.c, src/login.c, src/login_nopam.c, NEWS:
4853         use SYSLOG macro instead syslog() which saves the locale, sets the locale to C,
4854         sends the message and restores the locale (fix by Nicolas François <nicolas.francois@centraliens.net>).
4855
4856         * NEWS, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/userdel.8, man/Attic/usermod.8, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmod.8.xml, man/userdel.8.xml, man/usermod.8.xml:
4857         in SEE ALLSO section added refer to gpasswd(8)
4858         (suggested by Mike Frysinger <vapier@gentoo.org>)
4859
4860         * NEWS, configure.in: start work on 4.0.11.
4861
4862 2005-06-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
4863
4864         * NEWS: +1 day release 4.0.10 date.
4865
4866         * po/pl.po: kill fuzzy.
4867
4868         * po/de.po: partial update by Frank Schmid <frank@cs-schmid.de>.
4869
4870 2005-06-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
4871
4872         * po/ca.po: run "make update-po".
4873
4874         * po/sk.po: updated sk translation by Peter Mann <Peter.Mann@tuke.sk>.
4875
4876 2005-06-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
4877
4878         * NEWS: typo.
4879
4880 2005-06-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
4881
4882         * po/pl.po: typo.
4883
4884         * po/pl.po: updated for 4.0.10.
4885
4886         * po/ru.po, NEWS: updated ru translation by maintainer.
4887
4888         * NEWS: added past releases dates. Cleanups.
4889
4890         * man/Attic/shadowconfig.8: merge version generated from XML file.
4891
4892         * po/ca.po, po/cs.po, po/da.po, po/fi.po, NEWS:
4893         translations updated by maintainers.
4894
4895 2005-06-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
4896
4897         * src/chage.c, po/zh_TW.po, po/vi.po, po/zh_CN.po, po/tl.po, po/tr.po, po/uk.po, po/sk.po, po/sq.po, po/sv.po, po/ro.po, po/ru.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/eu.po, po/fi.po, po/fr.po, po/de.po, po/el.po, po/es.po, po/ca.po, po/cs.po, po/da.po, po/bs.po (usage):
4898         s/EXPIRE/EXPIRE_DATE/.
4899
4900         * po/pl.po: start update for 4.0.10.
4901
4902         * src/usermod.c, src/useradd.c, src/userdel.c, src/id.c, src/newgrp.c, src/su.c, po/zh_TW.po, po/zh_CN.po, po/vi.po, po/uk.po, po/tr.po, po/tl.po, po/sv.po, po/sq.po, po/sk.po, po/ru.po, po/pt_BR.po, po/ro.po, po/pt.po, po/pl.po, po/nn.po, po/nl.po, po/nb.po, po/ko.po, po/ja.po, po/it.po, po/id.po, po/he.po, po/fr.po, po/eu.po, po/fi.po, po/es.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po:
4903         s/uid/UID/ in all commnets and messages.
4904
4905         * libmisc/failure.c, libmisc/limits.c, lib/pwio.c:
4906         s/uid/UID/ in comments.
4907
4908         * src/usermod.c, src/useradd.c, src/groupadd.c, src/groupmod.c, src/id.c, src/newgrp.c, po/zh_TW.po, po/zh_CN.po, po/vi.po, po/uk.po, po/tr.po, po/tl.po, po/sv.po, po/sq.po, po/sk.po, po/ru.po, po/ro.po, po/pt_BR.po, po/pt.po, po/pl.po, po/nn.po, po/nl.po, po/nb.po, po/ko.po, po/ja.po, po/it.po, po/he.po, po/id.po, po/fr.po, po/fi.po, po/eu.po, po/es.po, po/el.po, po/da.po, po/de.po, po/cs.po, po/bs.po, po/ca.po, libmisc/limits.c, lib/groupio.c:
4909         s/gid/GID/ in all comments and messages.
4910
4911         * src/gpasswd.c, src/login.c, src/passwd.c, src/chage.c, src/chfn.c, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
4912         one message in i18n messages less: use in all places "Permission denied" instead
4913         "permission denied".
4914
4915         * libmisc/getdate.y:
4916         remove extern for gmtime(), localtime() and mktime() and instead add #include <time.h>.
4917
4918         * libmisc/entry.c: removed extern for fgetpwent().
4919
4920         * NEWS, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/pw_auth.3, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8:
4921         now most of the man pages now are generated from XML files so in case any submiting
4922         any chages to this resources please make diff fies to XML files.
4923
4924         * man/Attic/pw_auth.3.xml: cleanups.
4925
4926         * man/grpck.8.xml, man/passwd.1.xml:
4927         correctly code EXIT VALUES section using <variablelist>. Cleanups.
4928
4929         * man/shadow.3.xml: cleanups.
4930
4931 2005-06-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
4932
4933         * man/ja/Attic/mkpasswd.8, man/ja/Makefile.am, man/pl/Attic/mkpasswd.8, man/pl/Makefile.am:
4934         remove ja and pl mkpasswd.8 man pages.
4935
4936 2005-06-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
4937
4938         * man/pwck.8.xml, man/useradd.8.xml, man/userdel.8.xml:
4939         correctly code EXIT VALUES section.
4940
4941         * Attic/acconfig.h: removed DES_RPC and OPIE templates.
4942
4943         * src/Attic/mkpasswd.c, src/Makefile.am, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, man/Attic/mkpasswd.8, man/Attic/mkpasswd.8.xml, man/Makefile.am, po/POTFILES.in, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po:
4944         removed mkpasswd.
4945
4946         * man/Makefile.am: do not install mkpasswd(8) man page.
4947
4948         * src/Makefile.am: move mkpasswd.c to EXTRA_DIST.
4949
4950         * man/passwd.5.xml:
4951         use <itemizedlist mark='bullet'> for describe passwd fields. Remove outdated
4952         information about additional fields in comment field. Cleanups.
4953
4954         * man/newusers.8.xml: cleanups.
4955
4956         * man/gshadow.5.xml:
4957         use <itemizedlist mark='bullet'> for gshadow fields desscription.
4958
4959         * man/shadow.5.xml: cleanups.
4960
4961         * man/shadow.5.xml:
4962         use <itemizedlist mark='bullet'> for describe shadow fields.
4963
4964         * man/Attic/pw_auth.3.xml: cleanups.
4965
4966         * man/Attic/pw_auth.3.xml: use correct <refname>.
4967
4968         * man/Attic/pw_auth.3.xml: cleanups.
4969
4970         * man/groupdel.8.xml, man/groupmod.8.xml:
4971         correctly code EXIT VALUES section.
4972
4973         * man/groupadd.8.xml: cleanups.
4974
4975         * man/Attic/mkpasswd.8.xml: added missing <variablelist> tag.
4976
4977         * man/usermod.8.xml: cleanups.
4978
4979         * man/usermod.8.xml: remove <sbr/> tags from SYNOPSIS section.
4980
4981         * man/faillog.8.xml: cleanups.
4982
4983         * man/faillog.5.xml:
4984         put struct faillog definition in <programlisting></programlisting>.
4985
4986         * man/chsh.1.xml, man/chpasswd.8.xml: cleanups.
4987
4988         * man/groupadd.8.xml:
4989         seems I found good way for code EXIT VALUES section.
4990
4991         * man/shadow.3.xml:
4992         put meanings of each field spwd struct in <itemizedlist mark='bullet'>.
4993
4994         * man/shadow.3.xml:
4995         place definition of struct spwd in <programlisting></programlisting>.
4996
4997         * NEWS, src/userdel.c:
4998         userdel now deletes user groups from /etc/gshdow as well as /etc/group.
4999         Fix by Nicolas François <nicolas.francois@centraliens.net>.
5000         http://bugs.debian.org/99442
5001
5002         * src/usermod.c, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, NEWS, po/bs.po, po/ca.po, po/cs.po:
5003         fixed bug in usermod ad run "make -C po update-po".
5004         When relocating a user's home directory, don't fail and remove the new
5005         home directory if we can't remove the old home directory for some
5006         reason; the results can be spectularly poort if, for instance, only
5007         the rmdir() fails. Patch prepared by Timo Lindfors <lindi-spamtrap@newmail.com>.
5008         http://bugs.debian.org/166369
5009
5010 2005-06-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
5011
5012         * src/login.c: indent.
5013
5014         * man/Attic/pw_auth.3.xml, man/Attic/shadowconfig.8.xml, man/chage.1.xml, man/faillog.8.xml, man/groupmems.8.xml, man/gshadow.5.xml, man/login.1.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml:
5015         cleanups.
5016
5017 2005-06-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
5018
5019         * man/chage.1.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/faillog.5.xml:
5020         cleanups.
5021
5022         * man/login.1.xml: rewrited FILES section.
5023
5024         * man/id.1.xml, man/lastlog.8.xml, man/gshadow.5.xml: cleanups.
5025
5026         * man/groups.1.xml: typos.
5027
5028         * man/chfn.1.xml, man/expiry.1.xml, man/gpasswd.1.xml: cleanups.
5029
5030 2005-06-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
5031
5032         * NEWS:
5033         last patch for UTMPX was submited by by Nicolas François <nicolas.francois@centraliens.net>
5034
5035         * libmisc/failure.c, libmisc/failure.h, NEWS:
5036         use also UTMPX API instead UTMP on failure (login was by affected this when shadow
5037         was builded without PAM support).
5038
5039         * NEWS, src/login.c:
5040         the PAM session needs to be closed as root, thus before change_uid()
5041         http://bugs.debian.org/53570 http://bugs.debian.org/195048 http://bugs.debian.org/211884
5042
5043         * man/Attic/passwd.1, man/passwd.1.xml:
5044         s/compatiblity/compatibility/ (fix by Christian Perrier <bubulle@kheops.frmug.org>).
5045
5046 2005-06-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5047
5048         * NEWS, man/Attic/chfn.1, man/chfn.1.xml:
5049         give more details about the influence of login.defs on what's allowed to
5050         users (based on Debian patches).
5051
5052         * NEWS, src/su.c:
5053         fix syslogs to be less ambiguous. Use old:new format instead of old-new
5054         because '-' can appear in usernames.
5055         http://bugs.debian.org/213592
5056
5057         * NEWS, src/login.c:
5058         made login's -f option also able to use the username after -- if none
5059         was passed as it's optarg
5060         http://bugs.debian.org/53702
5061
5062         * po/POTFILES.in, NEWS, libmisc/Attic/setup.c, libmisc/Makefile.am:
5063         not used now (removed).
5064
5065         * man/Attic/usermod.8, man/usermod.8.xml:
5066         s/inactive_time/inactive_days/ in -f parameter in SYNOPSIS (fix by Christian
5067         Perrier <bubulle@debian.org>).
5068
5069 2005-06-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
5070
5071         * man/Attic/grpck.8, man/grpck.8.xml:
5072         typo: s/incorrectable/uncorrectable/ (by A Costa <agcosta@gis.net>).
5073
5074         * man/Attic/gshadow.5, man/gshadow.5.xml:
5075         typos: s/folowing/following/; s/encryped/encrypted/; s/supercedes/supersedes/
5076         (by A Costa <agcosta@gis.net>).
5077
5078         * man/Attic/shadow.5, man/shadow.5.xml:
5079         typos: s/encryped/encrypted/; s/supercedes/supersedes/
5080         (by A Costa <agcosta@gis.net>)
5081
5082 2005-06-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
5083
5084         * src/login.c, NEWS:
5085         check for hushed login and pass PAM_SILENT if true.
5086         http://bugs.debian.org/48002
5087
5088         * src/login.c, NEWS:
5089         fixed loggin of username on succesful login (was using the normal username,
5090         when it should have used pam_user) http://bugs.debian.org/47819
5091
5092 2005-06-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
5093
5094         * NEWS, po/zh_TW.po: updated (by Tetralet <tetralet@pchome.com.tw>).
5095
5096         * NEWS, po/ca.po: updated (by Guillem Jover <guillem@debian.org>).
5097
5098         * man/de/passwd.1:
5099         added small comment with marker usefull for translators.
5100
5101 2005-05-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
5102
5103         * src/Attic/mkpasswd.c, src/chpasswd.c, src/faillog.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/su.c, src/useradd.c, src/userdel.c, src/usermod.c, lib/encrypt.c, lib/getdef.c, lib/gshadow.c, lib/pwauth.h, lib/shadow.c, libmisc/failure.c, libmisc/isexpired.c, libmisc/salt.c:
5104         indent all.
5105
5106         * src/chage.c, src/chpasswd.c, src/expiry.c, src/login.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, lib/Attic/sppack.c, lib/defines.h, lib/lockpw.c, lib/prototypes.h, lib/sgetspent.c, lib/shadow.c, lib/shadowio.c, libmisc/age.c, libmisc/entry.c, libmisc/isexpired.c, libmisc/pwd2spwd.c, libmisc/pwdcheck.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, Attic/acconfig.h, NEWS, configure.in:
5107         remove using SHADOWPWD #define so now shadow is allways builded with shadow
5108         password support.
5109
5110 2005-05-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
5111
5112         * src/chage.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po, NEWS, man/Attic/chage.1, man/chage.1.xml:
5113         rewrite for use getopt_long().
5114
5115 2005-05-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
5116
5117         * NEWS, configure.in: start working on 4.0.10.
5118
5119         * man/Makefile.am: remove shadow-man-pages.pot target from all.
5120
5121 2005-05-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
5122
5123         * lib/encrypt.c, NEWS:
5124         fixed passwd segfault in non-PAM connfiguration (submited by Greg Schafer <gschafer@zip.com.au>).
5125
5126         * po/sv.po: upsdate (by Christian Perrier <bubulle@debian.org>).
5127
5128         * NEWS, src/newgrp.c:
5129         fixed NULL pointer dereference - getlogin() and ttyname() can
5130         return NULL which is not checked (http://bugs.debian.org/162303).
5131
5132         * man/Attic/su.1, man/pwconv.8.xml, man/su.1.xml, man/Attic/pwconv.8:
5133         fixed typo (s,similiar,similar,).
5134
5135 2005-05-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
5136
5137         * NEWS, po/ro.po: updated by Sorin B. <sorin@bonbon.net>.
5138
5139         * po/ru.po, NEWS: updated by yu-koz <yu-koz@yandex.ru>.
5140
5141 2005-05-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
5142
5143         * po/ro.po: few updates by Sorin Batariuc <sorin@bonbon.net>.
5144
5145 2005-05-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
5146
5147         * po/ru.po: updated (by Yuri Kozlov <yuray@id.ru>).
5148
5149 2005-05-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
5150
5151         * po/vi.po:
5152         completed translations for HEAD (by Clytie Siddall <clytie@riverland.net.au>).
5153
5154 2005-05-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5155
5156         * NEWS, po/LINGUAS, po/vi.po: added new vi translation.
5157
5158         * NEWS, lib/getdef.c:
5159         leaves the table as it is, and changes from the binary search to
5160         a sequential one (fix by Lucas Correia Villa Real <lucasvr@gobolinux.org>).
5161
5162         * man/Attic/passwd.1, man/passwd.1.xml:
5163         make bold passwd and chfn commands.
5164
5165 2005-04-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
5166
5167         * man/usermod.8.xml, man/vipw.8.xml: cleanups.
5168
5169 2005-04-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
5170
5171         * man/Attic/shadowconfig.8.xml, man/gpasswd.1.xml, man/groups.1.xml, man/grpck.8.xml, man/login.defs.5.xml, man/passwd.1.xml, man/pwck.8.xml, man/sulogin.8.xml, man/useradd.8.xml:
5172         replace <emphasis remap='B'></emphasis> by <command></command>.
5173
5174         * po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, src/lastlog.c:
5175         fixed lastlog --help message (s,--login,--user,) http://bugs.debian.org/249611
5176
5177         * man/Attic/mkpasswd.8.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml:
5178         use <varlistentry></varlistentry> in FILES section. Cleanups.
5179
5180         * man/expiry.1.xml, man/chsh.1.xml, man/chpasswd.8.xml, man/chfn.1.xml, man/porttime.5.xml, man/Attic/pw_auth.3.xml:
5181         cleanups.
5182
5183         * man/Attic/vipw.8, man/vipw.8.xml:
5184         small fix: s,vi,vi(1), (reported by Helge Kreutzmann <kreutzm@itp.uni-hannover.de> in
5185         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=260636).
5186         s,VISUAL,$VISUAL; s,EDITOR,$EDITOR,
5187
5188 2005-04-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
5189
5190         * man/login.1.xml: fixed bold (use <command></command>). Cleanups.
5191
5192         * man/Attic/login.1: fixed typo in bold.
5193
5194         * man/chage.1.xml: fixed italic. Cleanups.
5195
5196         * man/Attic/chage.1: fixed typo in italic.
5197
5198         * man/login.defs.5.xml:
5199         fixed italic (use <filename></filename> istead italic). Cleanups.
5200
5201         * man/Attic/login.defs.5: fixed typo in italic.
5202
5203         * man/vipw.8.xml: fixed italic (use <filename></filename>).
5204
5205         * man/Attic/vipw.8: typo in italic.
5206
5207         * man/Makefile.am:
5208         added target for generate shadow-man-pages.pot. List all now useable xml files
5209         in man_XMANS variable.
5210
5211         * man/pwconv.8.xml:
5212         fixed bold. Use in more places <command></command> istead bold.
5213
5214         * man/Attic/login.defs.5: typo in bold.
5215
5216         * man/su.1.xml:
5217         removed comment. Use <variablelist></variablelist> in Files secstion.
5218         Fixed bold.
5219
5220         * man/Attic/pwconv.8, man/Attic/su.1: typo in bold.
5221
5222 2005-04-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
5223
5224         * NEWS, configure.in: start work on 4.0.9.
5225
5226         * po/nl.po: kill fuzzy.
5227
5228         * man/Attic/chage.1:
5229         reverte last commit (by mistake commited experimental version generated from XML file).
5230
5231         * NEWS, po/nl.po:
5232         updated for 4.0.8 (by "cobaco (aka Bart Cornelis)" <cobaco@linux.be>).
5233
5234         * po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po:
5235         two typos (s,specyfied,specified,; s,maiximum,maximum,).
5236
5237         * NEWS, po/sk.po:
5238         updated for 4.0.8 (by Peter Mann <Peter.Mann@tuke.sk>).
5239
5240         * src/lastlog.c: typo (s,specyfied,specified,)
5241
5242         * src/faillog.c: typo (s,maiximum,maximum,).
5243
5244 2005-04-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
5245
5246         * man/chage.1.xml, man/chfn.1.xml, man/chsh.1.xml, man/expiry.1.xml, man/gpasswd.1.xml, man/groups.1.xml, man/id.1.xml, man/login.1.xml, man/passwd.1.xml, man/su.1.xml:
5247         added <refmiscinfo class="sectdesc">User Commands</refmiscinfo> in <refmeta></refmeta>.
5248
5249         * man/Attic/mkpasswd.8.xml, man/Attic/pw_auth.3.xml, man/Attic/shadowconfig.8.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/vigr.8.xml:
5250         Use encoding="UTF-8" and DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN".
5251
5252         * man/userdel.8.xml, man/usermod.8.xml, man/vigr.8.xml, man/vipw.8.xml, man/Attic/mkpasswd.8.xml, man/Attic/pw_auth.3.xml, man/Attic/shadowconfig.8.xml, man/chage.1.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml:
5253         better formation using "xmlindent -l 80 -d 2".
5254
5255 2005-04-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
5256
5257         * man/it/Attic/shadowconfig.8, man/it/chsh.1, man/it/expiry.1, man/it/faillog.5, man/it/faillog.8, man/it/getspnam.3, man/it/groups.1, man/it/grpck.8, man/it/grpconv.8, man/it/grpunconv.8, man/it/id.1, man/it/lastlog.8, man/it/login.1, man/it/logoutd.8, man/it/newgrp.1, man/it/porttime.5, man/it/pwck.8, man/it/shadow.3, man/it/shadow.5, man/it/su.1, man/it/vipw.8, NEWS, man/it/Makefile.am, man/it/chage.1, man/it/chfn.1, man/it/chpasswd.8:
5258         updated it man pages: chfn.1, chsh.1, groups.1, grpck.8, grpconv.8, grpunconv.8,
5259         id.1, lastlog.8, login.1, newgrp.1, pwunconv.8, shadow.5, vigr.8, vipw.8.
5260         new it man pages: chage.1, chpasswd.8, expiry.1, faillog.5, faillog.8,
5261         getspnam.3, logoutd.8, porttime.5, pwck.8, shadow.3, shadowconfig.8, su.1.
5262         (by Danilo Piazzalunga <danilopiazza@libero.it>)
5263
5264         * po/uk.po:
5265         cleanups in plural forms (by Roman Festchook <roma@polesye.net>).
5266
5267         * man/Attic/chage.1, man/Attic/mkpasswd.8.xml, man/Attic/pw_auth.3.xml, man/Attic/shadowconfig.8.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vipw.8.xml:
5268         reformated using xemacs.
5269
5270 2005-04-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
5271
5272         * po/fr.po, NEWS:
5273         updated for 4.0.8 (by Christian Perrier <bubulle@kheops.frmug.org>).
5274
5275         * NEWS, po/eu.po: updated for 4.0.8 (by ^pi^ <piarres@gmail.com>).
5276
5277         * NEWS, po/uk.po:
5278         updated for 4.0.8 (by Roman Festchook <roma@polesye.net>).
5279
5280         * po/cs.po:
5281         updated for 4.0.8 (by Miroslav Kure <kurem@upcase.inf.upol.cz>).
5282
5283         * po/da.po, NEWS:
5284         updated for 4.0.8 (by Claus Hindsgaul <claus_h@image.dk>).
5285
5286         * po/ko.po, NEWS:
5287         updated for 4.0.8 (by Changwoo Ryu <cwryu@debian.org>).
5288
5289         * po/fi.po: kill one fuzzy (by Tommi Vainikainen <thv+debian@iki.fi>).
5290
5291 2005-04-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
5292
5293         * man/chpasswd.8.xml: Rewrited by hand & xemacs.
5294
5295         * man/chfn.1.xml: cleanups in <refentry> tag.
5296
5297         * man/chfn.1.xml: Rewrited by hand & xemacs.
5298
5299         * NEWS, po/pt.po:
5300         updated for 4.0.8 (by Miguel Figueiredo <elmig@debianpt.org>).
5301
5302         * po/es.po, NEWS: updated (by Ruben Porras <nahoo@inicia.es>).
5303
5304 2005-04-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
5305
5306         * man/Attic/useradd.8:
5307         fixed typos in useadd syntax (in SYNOPSIS section) catched using doclifter.
5308
5309         * man/Attic/mkpasswd.8.xml, man/Attic/pw_auth.3.xml, man/Attic/shadowconfig.8.xml, man/chfn.1.xml, man/chpasswd.8.xml, man/chsh.1.xml, man/expiry.1.xml, man/faillog.5.xml, man/faillog.8.xml, man/getspnam.3.xml, man/gpasswd.1.xml, man/groupadd.8.xml, man/groupdel.8.xml, man/groupmems.8.xml, man/groupmod.8.xml, man/groups.1.xml, man/grpck.8.xml, man/grpconv.8.xml, man/grpunconv.8.xml, man/gshadow.5.xml, man/id.1.xml, man/lastlog.8.xml, man/limits.5.xml, man/login.1.xml, man/login.access.5.xml, man/login.defs.5.xml, man/logoutd.8.xml, man/newusers.8.xml, man/passwd.1.xml, man/passwd.5.xml, man/porttime.5.xml, man/pwck.8.xml, man/pwconv.8.xml, man/pwunconv.8.xml, man/sg.1.xml, man/shadow.3.xml, man/shadow.5.xml, man/su.1.xml, man/suauth.5.xml, man/sulogin.8.xml, man/useradd.8.xml, man/userdel.8.xml, man/usermod.8.xml, man/vigr.8.xml, man/vipw.8.xml:
5310         raw version converted using doclifter.
5311
5312         * configure.in: remove handle --with-lib{opie,skey}.
5313
5314         * man/de/chsh.1:
5315         synced with english version (by Simon Brandmair <sbrandmair@gmx.net>).
5316
5317         * man/Attic/usermod.8: improved -o description.
5318
5319         * man/de/passwd.1:
5320         added translation EXIT VALUES section (by Simon Brandmair <sbrandmair@gmx.net>).
5321
5322         * NEWS, po/it.po:
5323         updated it translation (by Danilo Piazzalunga <danilopiazza@libero.it>).
5324
5325 2005-04-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
5326
5327         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po:
5328         cleanups.
5329
5330         * po/pl.po: updated.
5331
5332         * src/usermod.c:
5333         use the same error message ("%s: PAM authentication failed\n") on fail
5334         authentication as in other tools.
5335
5336         * po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po:
5337         run "make update-po".
5338
5339         * src/login.c, src/login_nopam.c:
5340         fixed build with disabled PAM support: move bad_time_notify() and check_nologin()
5341         back to src/login.c but use this functions #ifndef USE_PAM.
5342
5343         * NEWS, lib/Makefile.am, lib/pwauth.c:
5344         remove not working OPIE and SKEY support.
5345
5346         * configure.in: typo (s,SELinuux,SELinux,).
5347
5348         * NEWS: typos.
5349
5350         * NEWS: chage, useradd, usermod: reduce multiple OPENLOG() calls.
5351
5352         * src/useradd.c, src/usermod.c: fix multiple OPENLOG() calls.
5353
5354         * src/chage.c: cleanups.
5355
5356         * src/chage.c: fix multiple OPENLOG() calls.
5357
5358         * src/chage.c:
5359         use E_SUCCESS/E_NOPERM #defines instead 0/1 in exit() arguments.
5360
5361 2005-04-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
5362
5363         * src/passwd.c:
5364         adjust also syslog message on usage -S option without permission.
5365         Consolidate SELinix and non-SELinux code.
5366
5367         * po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, NEWS, src/passwd.c:
5368         fix #61313 Debian bug: "passwd -S root" (as a normal user) should not
5369         display "You may not change the password for root.
5370
5371         * NEWS, man/Attic/passwd.1:
5372         fix #160477 Debian bug: improve -S output description.
5373
5374         * man/de/passwd.1:
5375         new translation by Simon Brandmair <sbrandmair@gmx.net> with merged all
5376         changes between revision 1.2 a 1.5.
5377
5378 2005-04-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
5379
5380         * man/Attic/passwd.1, man/pl/passwd.1: bold passwd and chage commands.
5381
5382         * NEWS, src/vipw.c:
5383         fixed race condition in vipw (Debian #242407 bug; fix by Alexander Gattin
5384         <arg@online.com.ua>).
5385
5386         * man/pl/Attic/chage.1.xml, man/pl/chage.1:
5387         synced with english version.
5388
5389         * man/Attic/chage.1, man/chage.1.xml:
5390         add info about what mean -1 passed n expiredate parameter (based on #304542
5391         Debian bug; submited by Federico Grau <grauf@rfa.org>).
5392
5393 2005-04-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
5394
5395         * po/fi.po, NEWS:
5396         updated translation (by Tommi Vainikainen <tvainikan@cc.hut.fi>).
5397
5398         * man/hu/passwd.1, man/it/passwd.1, man/ja/passwd.1, man/pl/passwd.1, man/Attic/passwd.1, man/de/passwd.1, man/es/passwd.1:
5399         cleanups and unifications in SEE ALSO section.
5400
5401 2005-04-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
5402
5403         * configure.in:
5404         Info documentation says about AC_GNU_SOURCE: "should be called before any
5405         macros that run the C compiler". So move this macro on top configure.in for
5406         avoid autoconf warnings.
5407
5408         * configure.in:
5409         AC_SYS_LARGEFILE() performs checking is fseeko() is avalaible so "fseeko" can
5410         be removed from AC_CHECK_FUNCS() parameters.
5411
5412         * NEWS, configure.in: Remove using AC_PROG_GCC_TRADITIONAL macro.
5413         Add using AC_GNU_SOURCE macro for kill compilation warnings about implicit
5414         declaration of function `fseeko'.
5415
5416         * po/cs.po: killed fuzzy (by Miroslav Kure <kurem@debian.cz>).
5417
5418         * man/ja/newgrp.1, man/pl/newgrp.1, NEWS, man/Attic/newgrp.1, man/hu/newgrp.1:
5419         newgrp uses /bin/sh (not bash).
5420
5421         * man/Attic/gpasswd.1, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/id.1, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/pwck.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8:
5422         describe /etc/group in FILES section as "group account information".
5423
5424         * man/Attic/grpck.8:
5425         describe /etc/passwd in FILES section as "user account information".
5426
5427         * po/stats: small script for generate translations statistics.
5428
5429         * NEWS, po/cs.po: Updated by Miroslav Kure <kurem@debian.cz>.
5430
5431         * man/chage.1.xml, man/Attic/chage.1, man/Attic/expiry.1, man/Attic/login.1, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/passwd.1, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/sulogin.8:
5432         describe /etc/shadow in FILES section as "secure user account information".
5433
5434         * man/Attic/newgrp.1:
5435         Reformated paragraph. s,Bourne shell,\fBbash\fR shell,
5436
5437         * NEWS, man/Attic/newgrp.1:
5438         fix #251926, #166173, #113191 Debian bugs: explain why editing /etc/group
5439         (without gshadow) doesn't permit to use newgrp.
5440
5441         * po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po:
5442         added/fixed Plural-Forms: header entries. Run "make update-po".
5443
5444         * po/pl.po:
5445         added Plural-Forms: header entry and updated for last change in
5446         libmisc/failure.c.
5447
5448         * libmisc/failure.c:
5449         break message text with failure login since last login.
5450
5451         * libmisc/failure.c:
5452         Use ngettext instead of string concatenation and static number of cases.
5453         Patch by Tommi Vainikainen <tvainika@cc.hut.fi>.
5454
5455 2005-04-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
5456
5457         * po/cs.po:
5458         new translation maintainer: Miroslav Kure <kurem@debian.cz>.
5459
5460 2005-04-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
5461
5462         * po/pl.po: updated for 4.0.8.
5463
5464 2005-04-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5465
5466         * po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, src/faillog.c:
5467         changed faillog records display format for allow fit in 80 columns all
5468         faillog atributies.
5469
5470         * po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po:
5471         run "make update-po". Updated pl.po.
5472
5473         * src/faillog.c (usage): typo (s,IDAYS,DAYS,).
5474
5475         * man/Attic/faillog.8, NEWS:
5476         updated after rewrite faillog command for use getopt_long().
5477
5478         * src/faillog.c:
5479         Add handle -h,--help option. Show in usage output information about
5480         -t,--time option. Remove handle -p option.
5481
5482         * po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po:
5483         run "make update-po".
5484
5485         * po/POTFILES.in: updated.
5486
5487         * man/Attic/gpasswd.1: typo (s,fB,\fB,).
5488
5489 2005-04-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
5490
5491         * NEWS, man/ja/login.1:
5492         updated ja man page for Debian #95213 bug (by Kenshi Muto <kmuto@debian.org>).
5493
5494         * src/chage.c, src/chfn.c, src/chsh.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/grpck.c, src/passwd.c, src/pwck.c, src/useradd.c, src/userdel.c, src/usermod.c, NEWS, lib/Attic/grdbm.c, lib/Attic/gsdbm.c, lib/Attic/pwdbm.c, lib/Attic/spdbm.c, lib/Makefile.am, lib/gshadow.c, lib/shadow.c:
5495         next round of cleanups: removed NDBM code (unused).
5496
5497         * src/login.c: consilidate some !USE_PAM lines.
5498
5499         * src/login.c, src/login_nopam.c:
5500         move bad_time_notify() and check_nologin() to src/login_nopam.c.
5501
5502         * lib/prototypes.h: remove not used login_desrpc() prototype.
5503
5504         * lib/Attic/rad64.c, lib/encrypt.c, lib/prototypes.h, lib/Makefile.am:
5505         remove lib/rad64 with not used c64i() and i64c() functions.
5506
5507         * lib/encrypt.c:
5508         remove "#ifdef SW_CRYPT .. #endif" and "#ifdef DOUBLESIZE .. #endif" unused code.
5509
5510         * lib/encrypt.c: remove "#ifdef MD5_CRYPT .. #endif" unused code.
5511
5512         * libmisc/salt.c:
5513         remove prototypes for *l64a() and add #include <stdlib.h>. Remove unused
5514         now code (old style random salt generator).
5515
5516         * src/chage.c: cleanups.
5517
5518         * src/chpasswd.c:
5519         remove prototypes for *l64a() and add #include <stdlib.h>.
5520
5521         * src/login.c: remove login_fbtab() prototype.
5522
5523         * src/chage.c:
5524         remove prototypes for a64l() and *l64a() and add #include <stdlib.h>.
5525
5526 2005-04-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
5527
5528         * man/ru/passwd.5, man/zh_CN/chfn.1, man/zh_CN/chpasswd.8, man/zh_CN/chsh.1, man/zh_CN/groupadd.8, man/zh_CN/groupdel.8, man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/userdel.8, man/zh_CN/usermod.8, man/zh_TW/chfn.1, man/zh_TW/chsh.1, man/zh_TW/groupadd.8, man/zh_TW/groupdel.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/userdel.8, man/zh_TW/usermod.8, man/ko/chfn.1, man/ko/chsh.1, man/ko/groups.1, man/ko/id.1, man/ko/login.1, man/ko/passwd.5, man/ko/su.1, man/pt_BR/gpasswd.1, man/pt_BR/groupadd.8, man/pt_BR/groupdel.8, man/pt_BR/groupmod.8, man/pt_BR/shadow.5, man/ja/Attic/mkpasswd.8, man/ja/Attic/pw_auth.3, man/ja/chage.1, man/ja/chfn.1, man/ja/chpasswd.8, man/ja/chsh.1, man/ja/expiry.1, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupmod.8, man/ja/groups.1, man/ja/grpck.8, man/ja/id.1, man/ja/lastlog.8, man/ja/limits.5, man/ja/login.1, man/ja/login.access.5, man/ja/login.defs.5, man/ja/newgrp.1, man/ja/passwd.1, man/ja/porttime.5, man/ja/pwck.8, man/ja/shadow.3, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/vipw.8, man/hu/chfn.1, man/hu/chsh.1, man/hu/gpasswd.1, man/hu/groups.1, man/hu/id.1, man/hu/login.1, man/hu/newgrp.1, man/hu/passwd.1, man/hu/su.1, man/id/chsh.1, man/id/login.1, man/id/useradd.8, man/it/chfn.1, man/it/chsh.1, man/it/gpasswd.1, man/it/groupadd.8, man/it/groupdel.8, man/it/groupmod.8, man/it/groups.1, man/it/grpck.8, man/it/id.1, man/it/lastlog.8, man/it/login.1, man/it/passwd.5, man/it/shadow.5, man/it/useradd.8, man/it/userdel.8, man/it/usermod.8, man/it/vipw.8, man/de/chfn.1, man/de/chsh.1, man/de/login.1, man/de/passwd.1, man/de/passwd.5, man/de/su.1, man/de/vipw.8, man/es/login.1, man/es/passwd.1, man/es/su.1, man/fr/chage.1, man/fr/chpasswd.8, man/fr/chsh.1, man/fr/faillog.5, man/fr/gpasswd.1, man/fr/groups.1, man/fr/id.1, man/fr/passwd.1, man/fr/passwd.5, man/fr/shadow.5, man/fr/su.1, man/fr/useradd.8, man/fr/userdel.8, man/fr/usermod.8, man/cs/groups.1, man/cs/id.1, man/cs/lastlog.8, man/cs/passwd.5, man/cs/shadow.5, man/cs/su.1, man/pl/Attic/mkpasswd.8, man/pl/Attic/pw_auth.3, man/pl/Attic/shadowconfig.8, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/expiry.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/gpasswd.1, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmems.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/limits.5, man/pl/login.1, man/pl/login.access.5, man/pl/login.defs.5, man/pl/logoutd.8, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/passwd.5, man/pl/porttime.5, man/pl/pwck.8, man/pl/pwconv.8, man/pl/shadow.3, man/pl/shadow.5, man/pl/su.1, man/pl/suauth.5, man/pl/sulogin.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/vipw.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/expiry.1, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/grpck.8, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/newgrp.1, man/Attic/passwd.1, man/Attic/porttime.5, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/usermod.8, man/Attic/vipw.8:
5529         more replaces "-" by "\-" (s,\\-,-,g; s,-,\\-,g).
5530
5531         * man/pl/usermod.8: finish sync with english version.
5532
5533         * man/hu/login.1, man/pl/login.1, NEWS, man/Attic/login.1, man/de/login.1:
5534         removed fragment about abilities pass enviroment variables in login prompt.
5535
5536         * man/Attic/gpasswd.1, man/Attic/newgrp.1:
5537         fixes by Nicolas Nicolas François <nicolas.francois@centraliens.net> (not all
5538         commited).
5539
5540 2005-04-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
5541
5542         * man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/gshadow.5, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5:
5543         replace all "-" by "\-" (s,\\-,-,; s,-,\\-,).
5544
5545         * man/cs/groups.1: cleanups.
5546
5547         * NEWS, src/su.c:
5548         fixed use of SU_WHEEL_ONLY in su. Now su realy is avalaible for wheel group
5549         members. Thanks to Mike Frysinger <vapier@gentoo.org> for report:
5550         http://bugs.gentoo.org/show_bug.cgi?id=80345
5551
5552         * man/pl/Attic/chage.1.xml:
5553         converted from roff using doclifter. Rewrited by hand. Probably will be
5554         removed after prepare infrastructure for translate man pages using gettext
5555         but temporary I need this for some experiments.
5556
5557         * src/login.c: remove unused #ifded LOGIN_FBTAB .. #endif code.
5558
5559         * configure.in, libmisc/Attic/login_access.c, libmisc/Makefile.am, src/Makefile.am, src/login.c, src/login_nopam.c:
5560         move libmisc/login_access.c to src/login_mopam.c.
5561         Remove using LOGIN_ACCESS #define. Now LOGIN_ACCESS is equal to !USE_PAM.
5562         In src/login_nopam.c will be cumulated non-PAM specyfic login code.
5563
5564         * src/lastlog.c, src/login.c, src/useradd.c, src/usermod.c, libmisc/log.c:
5565         cleanups: remove using #include "lastlog_.h".
5566
5567         * src/login.c: fixed build with PAM support disabled.
5568
5569         * src/login.c: remove "#ifdef HUP_MESG_FILE .. #endif" code.
5570
5571         * src/login.c: reindent using -l80.
5572
5573         * man/Attic/chage.1, man/chage.1.xml:
5574         s/chage/chage command/ in DESCRIPTION.
5575
5576         * man/chage.1.xml:
5577         converted from roff using doclifter. Rewrited by hand.
5578
5579         * man/Attic/chage.1, man/Attic/chfn.1, man/Attic/faillog.8, man/Attic/groupmod.8, man/Attic/pwconv.8, man/Attic/useradd.8, man/Attic/usermod.8:
5580         cleanups.
5581
5582         * man/Attic/pwconv.8: fixed typo: s,fI,\fI,
5583
5584         * po/POTFILES.in: remove libmisc/login_{desrpc,krb}.c.
5585
5586         * lib/getdef.c, libmisc/Attic/login_desrpc.c, libmisc/Attic/login_krb.c, libmisc/Makefile.am, src/login.c, NEWS, autogen.sh, configure.in:
5587         drop never finished kerberos and des_rpc support.
5588
5589         * man/it/chfn.1: cleanups.
5590
5591 2005-04-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
5592
5593         * NEWS, configure.in:
5594         fixed UTMP path detection (by Kelledin <kelledin@users.sf.net>).
5595
5596         * man/fr/chsh.1: typo.
5597
5598         * man/de/Makefile.am, man/de/passwd.5:
5599         imported from Deutscher manpages.
5600
5601         * man/cs/Makefile.am, man/cs/groups.1, man/cs/lastlog.8, man/cs/su.1:
5602         new files imported from Czech man-pages.
5603
5604         * man/pl/faillog.8, man/pl/groupmems.8, man/pl/id.1, man/pt_BR/groupadd.8, man/pt_BR/groupmod.8, man/zh_CN/groupadd.8, man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/usermod.8, man/zh_TW/groupadd.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/usermod.8, man/fr/chage.1, man/fr/chpasswd.8, man/fr/passwd.1, man/hu/chsh.1, man/it/groupadd.8, man/it/groupmod.8, man/it/usermod.8, man/ja/chage.1, man/ja/chfn.1, man/ja/chsh.1, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupmod.8, man/ja/login.1, man/ja/passwd.1, man/ja/useradd.8, man/ja/usermod.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chsh.1, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/id.1, man/Attic/login.1, man/Attic/passwd.1, man/Attic/useradd.8, man/de/chfn.1, man/de/chsh.1, man/de/login.1, man/de/passwd.1:
5605         cleanups: aded missing \fR.
5606
5607         * man/Attic/gpasswd.1, man/Attic/gshadow.5, man/Makefile.am, NEWS:
5608         added new file (by Nicolas Nicolas François <nicolas.francois@centraliens.net>).
5609
5610 2005-03-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
5611
5612         * man/pl/chage.1, man/pl/chfn.1, man/pl/chsh.1, man/pl/gpasswd.1:
5613         added missing \fR.
5614
5615         * man/pl/groupmod.8: typo: s,\fI,\fR,
5616
5617         * man/pl/login.1, man/pl/passwd.1: cleanups: aded missing \fR.
5618
5619         * man/pl/sulogin.8: cleanups.
5620
5621         * man/pl/useradd.8: cleanups: aded missing \fR.
5622
5623         * man/pl/usermod.8: partialy synced with english version.
5624
5625         * man/Attic/usermod.8: typo.
5626
5627         * NEWS, man/Attic/usermod.8:
5628         fixed #302388 Debian bug: added separated -o option description.
5629
5630         * lib/getdef.c:
5631         FAILLOG_ENAB, LOGIN_STRING moved to code "#ifndef USE_PAM" dependent.
5632
5633         * lib/pwauth.c, lib/pwauth.h: enable pw_auth() only #ifndef USE_PAM.
5634
5635         * src/userdel.c, src/usermod.c, src/vipw.c, src/Attic/mkpasswd.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmems.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/suauth.c, src/sulogin.c, src/useradd.c, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, libmisc/Attic/login_access.c, libmisc/Attic/login_krb.c, libmisc/addgrps.c, libmisc/age.c, libmisc/chkname.h, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/copydir.c, libmisc/env.c, libmisc/failure.c, libmisc/failure.h, libmisc/getdate.h, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/loginprompt.c, libmisc/motd.c, libmisc/pam_pass.c, libmisc/pwdcheck.c, libmisc/rlogin.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/strtoday.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/utmp.c, libmisc/xmalloc.c, NEWS, lib/Attic/getpass.c, lib/Attic/grdbm.c, lib/Attic/grpack.c, lib/Attic/gsdbm.c, lib/Attic/gspack.c, lib/Attic/pwdbm.c, lib/Attic/pwpack.c, lib/Attic/rad64.c, lib/Attic/rcsid.h, lib/Attic/spdbm.c, lib/Attic/sppack.c, lib/commonio.c, lib/commonio.h, lib/defines.h, lib/encrypt.c, lib/faillog.h, lib/fputsx.c, lib/getdef.c, lib/getdef.h, lib/groupio.c, lib/groupio.h, lib/gshadow.c, lib/gshadow_.h, lib/lockpw.c, lib/port.c, lib/port.h, lib/prototypes.h, lib/pwauth.c, lib/pwauth.h, lib/pwio.c, lib/pwio.h, lib/sgetgrent.c, lib/sgetpwent.c, lib/sgetspent.c, lib/sgroupio.c, lib/sgroupio.h, lib/shadow.c, lib/shadowio.c, lib/shadowio.h, lib/utent.c:
5636         reindent all source code using -l80.
5637
5638         * libmisc/.indent.pro, src/.indent.pro, lib/.indent.pro: -l80 added.
5639
5640         * lib/gshadow.c, NEWS:
5641         rewrited group count to dynamic (by John Newbigin <jnewbigin@ict.swin.edu.au >).
5642
5643         * po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tl.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po:
5644         run "make update-po".
5645
5646         * src/login.c: use allways "\n%s login: " login prompt.
5647
5648         * src/login.c: removed radius support (even not compiles).
5649
5650         * doc/Attic/README.mirrors, doc/Makefile.am: removed.
5651
5652         * src/userdel.c (update_user): removed next redundant closing }.
5653
5654         * src/userdel.c: remove using unused NO_REMOVE_MAILBOX #define.
5655
5656         * src/userdel.c (update_user): removed redundant closing }.
5657
5658 2005-03-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
5659
5660         * lib/getdef.c:
5661         move PASS_MAX_DAYS, PASS_MIN_DAYS and PASS_WARN_AGE to part PAM not dependent
5662         (used in useradd, pwconv).
5663
5664         * configure.in, src/Makefile.am:
5665         move define LOCALEDIR using AC_DEFINE_UNQUOTED() to src/Makefile.am::AM_CPPFLAGS.
5666
5667         * man/Attic/pwconv.8: typo in bold.
5668
5669         * doc/Attic/INSTALL: removed.
5670
5671         * doc/Attic/README.sun4, doc/Makefile.am: removed outdated README.sun4.
5672
5673 2005-03-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
5674
5675         * po/pl.po: put mine data in Last-Translator: field.
5676
5677         * src/newusers.c:
5678         use the same as in useradd default UMASK (022 instead 077) if diffrent not
5679         defined in login.defs.
5680
5681         * NEWS, libmisc/copydir.c:
5682         added SELinux changes (based on Fedora patch).
5683
5684         * NEWS: typo.
5685
5686         * man/Attic/login.defs.5: typo in bold.
5687
5688         * src/chfn.c, src/chsh.c, lib/getdef.c:
5689         move CHFN_AUTH, CHSH_AUTH variables from login.defs to part !USE_PAM dependent.
5690         Use "auth required pam_unix.so" in /etc/pam.d/{chfn,chsh} for force enter password
5691         on use chfn/chsh.
5692
5693         * lib/getdef.c: added CHSH_AUTH variable in def_table[] table.
5694
5695         * src/chsh.c: s/CHFN_AUTH/CHSH_AUTH/
5696
5697         * man/Attic/shadow.5, man/Attic/passwd.5:
5698         add more accurate information about what contains field with encrypted password in
5699         each passwd/shadow line (reported by Mike Brodbelt).
5700
5701         * autogen.sh: reorder.
5702
5703         * lib/getdef.c:
5704         CRACKLIB_DICTPATH, ENV_HZ, ENV_PATH, ENV_ROOTPATH, ENV_SUPATH, ENV_TZ,
5705         ENVIRON_FILE, FTMP_FILE, ISSUE_FILE, LASTLOG_ENAB, MAIL_CHECK_ENAB, MAIL_DIR,
5706         MAIL_FILE, MD5_CRYPT_ENAB, MOTD_FILE, NOLOGINS_FILE, OBSCURE_CHECKS_ENAB,
5707         PASS_ALWAYS_WARN, PASS_CHANGE_TRIES, PASS_MAX_DAYS, PASS_MAX_LEN, PASS_MIN_DAYS,
5708         PASS_MIN_LEN, PASS_WARN_AGE, PORTTIME_CHECKS_ENAB, SU_WHEEL_ONLY, QMAIL_DIR,
5709         QUOTAS_ENAB, ULIMIT variables moved to code "#ifndef USE_PAM" dependent.
5710
5711         * configure.in:
5712         fix importand typo: added missing ",". Now LOGIN_ACCESS realy is defined only
5713         when PAM is not enabled.
5714
5715         * libmisc/obscure.c, libmisc/limits.c:
5716         all functions from this file are "#ifndef USE_PAM" dependent.
5717
5718         * libmisc/setugid.c (change_uid):
5719         removed dead code depndent on "#ifdef BSD".
5720
5721         * libmisc/ttytype.c (ttytype):
5722         removed dead code depend on "defined(SUN) || defined(BSD) || defined(SUN4)".
5723
5724         * src/login.c (setup_tty): remove dead code.
5725
5726         * libmisc/rlogin.c:
5727         fix compilation warning: replace #include <unistd.h> by #include <netdb.h>
5728         where ruserok() is declared.
5729
5730 2005-03-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
5731
5732         * po/pl.po: kill one fuzzy entry.
5733
5734 2005-03-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5735
5736         * NEWS, libmisc/log.c:
5737         fixed create lastlog entry fo users never loged in on non-PAM
5738         variant of login (fix by <oracular@ziplip.com>).
5739
5740 2005-03-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
5741
5742         * NEWS, etc/Attic/login.defs.linux, etc/login.defs, lib/getdef.c, man/pl/login.defs.5:
5743         remove handle login.defs::NOLOGIN_STR (never used).
5744
5745 2005-02-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
5746
5747         * man/Attic/shadow.5:
5748         added missing '\&' in line starting with '\.', which causes groff to skip
5749         it entirely (fix submited by Danilo Piazzalunga <danilopiazza@libero.it>).
5750
5751         * TODO: cleanups.
5752
5753 2005-02-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
5754
5755         * src/useradd.c, NEWS:
5756         useradd: fixes a potential security problem when mailbox is created in
5757         useradd.
5758         Patch and comment by Koblinger Egmont <egmont@uhulinux.hu>:
5759         Only two arguments are passed to the open() call though it expects three
5760         because O_CREAT is present. Hence the permission of the file first becomes
5761         some random garbage found on the stack, and an attacker can perhaps open
5762         this file and hold it open for reading or writing before the proper
5763         fchmod() is executed. (Actually, we could also pass the final "mode" to
5764         the open() call and then save the consequent fchmod().)
5765
5766 2005-02-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
5767
5768         * NEWS, po/LINGUAS, po/tl.po:
5769         added tl translation (fron Debian resources).
5770
5771 2005-02-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
5772
5773         * NEWS, src/chage.c, src/chfn.c, src/chsh.c, src/passwd.c:
5774         SELinux changes: added changes in chage, chfn, chsh, passwd for allow
5775         construct more grained user password/accuunt properties on SELinux
5776         policies level. Patch originally based on RH changes (submited by Chris
5777         PeBenito <pebenito@gentoo.org>)
5778
5779 2005-02-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5780
5781         * po/fr.po, NEWS:
5782         updated translation (by Jean-Luc Coulon <jean-luc.coulon@wanadoo.fr>) from
5783         Debian resources.
5784
5785 2005-01-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
5786
5787         * NEWS, configure.in: open work on 4.0.8.
5788
5789 2005-01-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
5790
5791         * po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po:
5792         "make update-po".
5793
5794 2005-01-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
5795
5796         * NEWS, po/it.po:
5797         updated it translations (by Danilo Piazzalunga <danilopiazza@libero.it>).
5798
5799 2005-01-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
5800
5801         * libmisc/rlogin.c: remove ruserok() prototyle and #include <unistd.h>.
5802
5803         * lib/getdef.c: remove strtol() prototype (it comes with <stdlib.h>).
5804
5805         * po/da.po, po/es.po, po/nl.po, po/pl.po, po/pt.po:
5806         "Project-Id-Version: shadow 4.0.7".
5807
5808         * NEWS, po/fi.po:
5809         updated fi translation (by Tommi Vainikainen <thv+debian@iki.fi>).
5810
5811 2005-01-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
5812
5813         * po/da.po, po/es.po, po/pl.po, po/pt.po: kill fuzzy entries.
5814
5815         * po/nl.po, NEWS:
5816         updated nl translations (by cobaco (aka Bart Cornelis)" <cobaco@linux.be>).
5817
5818         * lib/Makefile.am (libshadow_la_LIBADD): removed snprintf.h.
5819
5820         * NEWS, po/LINGUAS, po/zh_TW.po:
5821         added zh_TW translation (from Debian resources).
5822
5823         * po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po:
5824         "make update-po".
5825
5826         * src/Attic/mkpasswd.c, src/passwd.c, src/userdel.c, src/chage.c, src/chfn.c, src/chsh.c, src/gpasswd.c, src/groups.c, src/login.c:
5827         "less means better" added fixes which makes english texts more consistent
5828         especially with capitalization issues. Based on fixes by Tommi Vainikainen
5829         <thv+debian@iki.fi> (make all text begining from lower case .. not upper).
5830         This patch cuts i18n entries in each po/*po file from 420 to 402.
5831
5832 2005-01-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
5833
5834         * NEWS: added pt to updated translations.
5835
5836         * lib/defines.h: reverte last change (mistake).
5837
5838         * po/pt.po:
5839         updated translation by Miguel Figueiredo <elmig@debianpt.org>.
5840
5841 2005-01-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
5842
5843         * NEWS: typo.
5844
5845         * NEWS: update da, es and pl (100%) translations.
5846
5847         * po/pl.po: finish translations.
5848
5849         * po/da.po: updated translations by Claus Hindsgaul <claus_h@image.dk>.
5850
5851         * NEWS, TODO: Typos found by Claus Hindsgaul <claus_h@image.dk>.
5852
5853         * po/es.po: Updates from Ruben Porras <nahoo@inicia.es>.
5854
5855         * lib/defines.h: - remove usong shadow_.h.
5856
5857         * po/pl.po: kill fuzzy.
5858
5859         * NEWS, lib/Attic/grent.c, lib/Attic/lastlog_.h, lib/Attic/md5.c, lib/Attic/md5.h, lib/Attic/md5crypt.c, lib/Attic/mkdir.c, lib/Attic/putgrent.c, lib/Attic/putpwent.c, lib/Attic/putspent.c, lib/Attic/pwent.c, lib/Attic/rename.c, lib/Attic/rmdir.c, lib/Attic/shadow_.h, lib/Attic/snprintf.c, lib/Attic/snprintf.h, lib/Attic/strcasecmp.c, lib/Attic/strdup.c, lib/Attic/strerror.c, lib/Attic/strstr.c, lib/Makefile.am:
5860         remove unused now files in lib/ directory.
5861
5862         * po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/POTFILES.in, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po:
5863         Now correctly shadow passes "make distcheck".
5864
5865         * NEWS: typo.
5866
5867 2005-01-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
5868
5869         * src/faillog.c, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sk.po, po/sq.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, NEWS:
5870         switch faillog ro use getopt_long().
5871
5872         * etc/pam.d/su: aded line with "session required pam_env.so".
5873
5874 2004-12-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
5875
5876         * man/de/Makefile.am, man/de/vigr.8, man/de/vipw.8, NEWS:
5877         added de vigr(8), vipw(8) man pages (from Debian resources).
5878
5879 2004-12-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
5880
5881         * po/LINGUAS, po/ro.po, po/sq.po, NEWS:
5882         added ro, sq translations (from Debian resources).
5883
5884 2004-12-20  Tomasz Kłoczko  <kloczek@pld.org.pl>
5885
5886         * configure.in:
5887         added checing is fseeko() function is avalaibabe in system: added fseeko to
5888         AC_CHECK_FUNCS parameters.
5889
5890         * lib/Makefile.am:
5891         fixed warning message about incorrect try linking non-PIC code with shared
5892         library: removed $(top_builddir)/libmisc/libmisc.a from libshadow_la_LIBADD.
5893
5894         * NEWS:
5895         - final entry about fixed large file support in lastlog and faillog.
5896
5897         * src/vipw.c, lib/Attic/pwent.c, lib/Attic/grent.c:
5898         use fseeko() instead fseek(). This not realuy neccessary because in this
5899         cases fseek() was used for move to begin of file. This only for minimize
5900         external functions count.
5901
5902         * src/faillog.c:
5903         fixes for allow operate on large files by faillog: use fseeko() instead
5904         fseek().
5905
5906         * src/lastlog.c:
5907         fixes for allow operate lastlog on large files: use fseeko() instead fseek()
5908         and do not casrt file offsets to unsigned long (based on large-file patch
5909         from FC).
5910
5911         * src/faillog.c: fixed typo in usage().
5912
5913 2004-12-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
5914
5915         * man/pl/newgrp.1: fixed typo in bold macro.
5916
5917 2004-12-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
5918
5919         * man/pl/chpasswd.8: remove bold from NAZWA section.
5920
5921 2004-12-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
5922
5923         * src/faillog.c: remove using Prog variable.
5924
5925         * configure.in, NEWS:
5926         fixed large file support: added AC_SYS_LARGEFILE macro to autoconf.
5927
5928         * man/Attic/groupmod.8, man/pl/groupmod.8: separate OPTIONS section.
5929
5930         * man/pl/chpasswd.8: sync with english version.
5931
5932         * man/Attic/chpasswd.8:
5933         bold "chpasswd" command name in CAVEATS section.
5934
5935         * man/Attic/chpasswd.8: s/protect/protected/
5936
5937         * man/pl/lastlog.8: cleanups.
5938
5939         * man/Attic/chpasswd.8, man/Attic/lastlog.8, man/Attic/newusers.8:
5940         remove bold from NAME section.
5941
5942         * man/it/groupadd.8, man/it/useradd.8: separate OPZIONI section.
5943
5944         * man/pl/groupmems.8: fixes in OPCJE section.
5945
5946         * man/Attic/chpasswd.8: more cleanups.
5947
5948 2004-12-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
5949
5950         * man/Attic/chage.1, man/Attic/chfn.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.5, man/Attic/pw_auth.3, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadowconfig.8, man/Attic/suauth.5, man/Attic/useradd.8:
5951         Fixed varoiuse typos and misspeling based partialy on patch from Bug#141322
5952         from Debian (submited by Christian Perrier <bubulle@debian.org>).
5953
5954         * man/Attic/chpasswd.8: more cleanups.
5955
5956         * man/pl/faillog.8, man/Attic/faillog.8, man/ja/faillog.8:
5957         remove from OPTIONS section information about avalaibability on some systems
5958         faillog database in other location thad listed in FILES section.
5959
5960         * man/Attic/chpasswd.8: updated.
5961
5962         * man/fr/faillog.5:
5963         fixed FICHIERS secttion: corrected change to italic on /var/log/faillog.
5964
5965         * src/faillog.c:
5966         move main() to the end of file and reorder rest functions. Now declararion
5967         finction prototypes can be removed.
5968
5969 2004-12-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
5970
5971         * NEWS: updated.
5972
5973         * man/pl/lastlog.8: synced with current english version.
5974
5975         * man/Attic/lastlog.8: use the same style as in chpasswd(8).
5976
5977         * po/uk.po, po/zh_CN.po, po/tr.po, po/sv.po, po/ru.po, po/sk.po, po/pt_BR.po, po/pt.po, po/pl.po, po/nn.po, po/nl.po, po/nb.po, po/ko.po, po/ja.po, po/he.po, po/id.po, po/it.po, po/fi.po, po/fr.po, po/es.po, po/eu.po, po/el.po, po/da.po, po/de.po, po/cs.po, po/ca.po, po/bs.po:
5978         "make update-po" after rewrite lastlog.
5979
5980         * src/lastlog.c: Rewrite for use the same style as in chpasswd.c.
5981         Move open lastlog file after commadline option parsing so now --help option
5982         can be used by user without read access to lastlog file.
5983
5984         * src/chpasswd.c:
5985         s/display this help and exit/display this help message and exit/ in ussage()
5986         output.
5987
5988         * po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po:
5989         "make update-po".
5990
5991         * src/chpasswd.c:
5992         Added handle -h|--help option. Improved and updated ussage() output.
5993
5994 2004-12-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
5995
5996         * po/tr.po, po/uk.po, po/zh_CN.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/da.po, po/de.po, po/el.po, po/bs.po, po/ca.po, po/cs.po:
5997         "make update-po" and resolve fuzzy with last change in src/chpasswd.c.
5998
5999         * src/chpasswd.c, NEWS:
6000         switch chpasswd to use getopt_long() and adds a --md5 option
6001         (by Ian Gulliver <ian@penguinhosting.net>).
6002
6003         * NEWS, configure.in: start work on 4.0.7.
6004
6005 2004-11-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
6006
6007         * NEWS: cleanups.
6008
6009         * po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po, po/ca.po, po/cs.po, po/da.po:
6010         removed not used translations.
6011
6012         * NEWS, src/su.c:
6013         fix adding of pam_env env variables to enviroment (Martin Schlemmer <azarah@nosferatu.za.org>).
6014
6015         * NEWS, configure.in:
6016         fixed filling MAIL_SPOOL_DIR and MAIL_SPOOL_FILE variables which was allways
6017         empty (Gregorio Guidi <g.guidi@sns.it>)
6018
6019         * NEWS: updated.
6020
6021         * src/useradd.c, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po:
6022         do not translate variable names from /etc/default/useradd during "useradd -D".
6023
6024 2004-11-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
6025
6026         * man/zh_CN/groupadd.8, man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/usermod.8, man/zh_TW/groupadd.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/usermod.8, man/it/groupadd.8, man/it/groupmod.8, man/it/useradd.8, man/it/usermod.8, man/ja/groupadd.8, man/ja/groupmod.8, man/ja/useradd.8, man/ja/usermod.8, man/pl/groupadd.8, man/pl/groupmod.8, man/pl/useradd.8, man/pl/usermod.8, man/pt_BR/groupadd.8, man/pt_BR/groupmod.8, man/Attic/groupadd.8, man/Attic/groupmod.8, man/Attic/useradd.8, man/fr/useradd.8, man/fr/usermod.8, man/id/useradd.8:
6027         correction: groups/users with gid/uid 0 and 999 are reserved for system accounts.
6028
6029         * man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/usermod.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/usermod.8, man/id/useradd.8, man/it/groupadd.8, man/it/groupmod.8, man/it/useradd.8, man/it/usermod.8, man/ja/groupadd.8, man/ja/groupmod.8, man/ja/useradd.8, man/ja/usermod.8, man/pl/groupadd.8, man/pl/groupmod.8, man/pl/useradd.8, man/pl/usermod.8, man/pt_BR/groupmod.8, man/Attic/groupadd.8, man/Attic/groupmod.8, man/Attic/useradd.8, man/fr/useradd.8, man/fr/usermod.8:
6030         zgroups/users with gid/uid 0 and 499 are typically reserved for system accounts.
6031
6032 2004-11-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
6033
6034         * man/pl/Attic/mkpasswd.8, man/pl/chage.1, man/pl/chsh.1, man/pl/faillog.8, man/pl/groupadd.8, man/pl/groupmems.8, man/pl/groupmod.8, man/pl/lastlog.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, man/Attic/chage.1, man/Attic/chsh.1, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupmems.8, man/Attic/lastlog.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8:
6035         separated OPTIONS section.
6036
6037         * lib/commonio.c: reverte last change.
6038
6039         * libmisc/pwdcheck.c:
6040         one word fix .. ommited "else" was removed. Now security bug which allow
6041         unauthorized account properties modification is realy closed.
6042
6043 2004-10-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
6044
6045         * lib/commonio.c:
6046         add matchpathcon to create the files correctly when they do not exist (based
6047         on patch from FC).
6048
6049         * man/Attic/passwd.1: fixed two typos ("/" in incorrect place).
6050
6051 2004-10-27  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6052
6053         * etc/pam.d/useradd: - added header
6054
6055         * etc/pam.d/chfn, etc/pam.d/chsh, etc/pam.d/userdel: - fixed header
6056
6057 2004-10-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
6058
6059         * etc/pam.d/chfn, etc/pam.d/chsh, etc/pam.d/userdel:
6060         added missing template/example PAM service config files for chfn, chsh, userdel.
6061
6062         * NEWS, configure.in: start 4.0.6.
6063
6064 2004-10-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
6065
6066         * man/pl/Attic/adduser.8, man/pl/Makefile.am, man/Attic/adduser.8, man/Makefile.am, man/fr/Attic/adduser.8, man/fr/Makefile.am, man/id/Attic/adduser.8, man/id/Makefile.am, man/it/Attic/adduser.8, man/it/Makefile.am, man/ja/Attic/adduser.8, man/ja/Makefile.am, NEWS:
6067         remove adduser(8) roff include man page to useradd(8).
6068
6069         * lib/Makefile.am: more fixes for non-inst libmisc.
6070
6071         * libmisc/Makefile.am, src/Makefile.am, NEWS:
6072         change libmisc to private static library.
6073
6074         * etc/pam.d/Makefile.am: typo.
6075
6076 2004-10-24  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6077
6078         * po/pl.po: - more translation/formatting fixes
6079
6080         * po/pl.po: - updated translation
6081
6082         * po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po:
6083         - make update-po, updated usage() translation
6084
6085         * src/useradd.c: - syntax fix for useradd in usage()
6086
6087         * po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po:
6088         - usage() formatting and other fixes
6089
6090         * po/fi.po: - proper UTF
6091
6092         * po/pl.po: - pl translation fixes/updates by Jakub Bogusz
6093
6094 2004-10-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
6095
6096         * etc/pam.d/chage, etc/pam.d/chpasswd, etc/pam.d/groupadd, etc/pam.d/groupdel, etc/pam.d/groupmod, etc/pam.d/newusers, etc/pam.d/useradd, etc/pam.d/usermod:
6097         use default path to PAM modules.
6098
6099         * etc/pam.d/Attic/shadow, etc/pam.d/Makefile.am, etc/pam.d/chage, etc/pam.d/chpasswd, etc/pam.d/groupadd, etc/pam.d/groupdel, etc/pam.d/groupmod, etc/pam.d/login, etc/pam.d/newusers, etc/pam.d/usermod:
6100         Remove shadow PAM config file. Added PAM config files for: chage, chpasswd,
6101         groupadd, groupdel, groupmod, login, newusers.
6102
6103         * po/zh_CN.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po:
6104         "make update-po".
6105
6106         * configure.in: reverte previous incorrect commit.
6107
6108         * NEWS, src/su.c:
6109         add pam_open_session() support. If builded without PAM support
6110         propagate $DISPLAY and $XAUTHORITY enviroment variables.
6111         Based on http://www.gentoo.org/cgi-bin/viewcvs.cgi/sys-apps/shadow/files/shadow-4.0.4.1-su-pam_open_session.patch?rev=1.1
6112
6113 2004-10-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
6114
6115         * configure.in: cleanups.
6116
6117         * lib/defines.h:
6118         define syslog() depending on ENABLE_NLS (not on HAVE_SETLOCALE).
6119
6120 2004-10-23  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6121
6122         * man/fr/Makefile.am: - killed non-existent manpage
6123
6124 2004-10-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
6125
6126         * libmisc/copydir.c, NEWS:
6127         when placing symlinks into /etc/skel copy_tree of libmisc/copydir.c will
6128         properly create the symlink in the destination directory but not change the
6129         ownership to the target user/group. This makes httpd Option
6130         SymlinkIfOwnerMatch break for default weg pages including symlinks placed
6131         into /etc/skel/public_html for example.
6132         http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=66819
6133
6134 2004-10-11  Tomasz Kłoczko  <kloczek@pld.org.pl>
6135
6136         * src/Makefile.am:
6137         seems I foud CorrectWay(tm) for add some symlinks on install target.
6138
6139         * po/pl.po: more fixes.
6140
6141         * po/pl.po: added missing \n.
6142
6143         * src/chage.c, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, NEWS, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po:
6144         more verbose/human readable -l output. This output is much more beter for
6145         send directly via email for each users as message with account status (for
6146         example as message with warning about account/password expiration).
6147
6148         * configure.in: start prepare for 4.0.5.
6149
6150         * src/Makefile.am, libmisc/Makefile.am, lib/Makefile.am, configure.in:
6151         move LOCALEDIR to autoheader variables. Remove redefining DEFS in
6152         Makefile.am (not neccessary now).
6153
6154         * src/chage.c, src/chpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/grpck.c, src/logoutd.c, src/newusers.c, src/pwck.c, src/useradd.c, src/userdel.c, src/usermod.c, NEWS:
6155         applied OWL shadow-4.0.4.1-owl-pam-auth.diff patch by Solar Designer
6156         <solar@openwall.com>:
6157           Moved the PAM authentication in user management commands after
6158           command-line parsing, made it use separate service names for each command.
6159           Use constant strings rather than argv[0] for syslog ident in the user
6160           management commands.
6161
6162         * man/Attic/useradd.8:
6163         reword the useradd manpage a little to make it more clear. Fix from:
6164         http://www.gentoo.org/cgi-bin/viewcvs.cgi/sys-apps/shadow/files/shadow-4.0.4.1-useradd-manpage-update.patch?rev=1.1
6165
6166         * configure.in: added libselinux detection.
6167
6168         * lib/Makefile.am, lib/commonio.c, lib/commonio.h, NEWS, autogen.sh, configure.in:
6169         added SELinux support (basing on patch from Gentoo).
6170
6171         * man/fr/Makefile.am (man_MANS): added getspnam.3.
6172
6173 2004-10-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
6174
6175         * po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po, src/groupadd.c, src/groupmod.c:
6176         English grammar fix: s/is a not a valid group name/is not a valid group name/
6177         (pointed by Mike Frysinger <vapier@gentoo.org>).
6178
6179 2004-10-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
6180
6181         * NEWS, src/userdel.c:
6182         When removing a user with userdel, userdel always exits 1 (fixed).
6183         Based on http://bugs.gentoo.org/show_bug.cgi?id=66687.
6184
6185 2004-08-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
6186
6187         * configure.in:
6188         Use AC_SEARCH_LIBS() for inet_ntoa(), socket(), gethostbyname() probing (instead AC_CHECK_FUNC()).
6189
6190 2004-08-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
6191
6192         * man/Makefile.am: shadow(3) man page moved to man_MANS.
6193
6194         * libmisc/ttytype.c: Removed getenv() prototype (it is in <stdlib.h>).
6195
6196         * src/Attic/mkpasswd.c:
6197         Removed fgetsx() prototype (it is in lib/prototypes.h).
6198
6199         * man/it/vigr.8: Fixed typo (s/wipw/vipw/).
6200
6201 2004-08-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
6202
6203         * NEWS: Typo.
6204
6205         * po/tr.po, po/uk.po, po/zh_CN.po, po/bs.po, po/cs.po, po/de.po, po/el.po, po/es.po, po/eu.po, po/fi.po, po/fr.po, po/he.po, po/id.po, po/it.po, po/ja.po, po/ko.po, po/nb.po, po/nn.po, po/pl.po, po/pt.po, po/ru.po, po/sk.po, po/sv.po:
6206         Run "make update-po".
6207
6208         * po/ca.po, po/da.po, po/nl.po, po/pt_BR.po: Converted to UTF-8.
6209
6210         * po/LINGUAS: Typo.
6211
6212         * po/nb.po, po/nl.po, po/nn.po, po/pt.po, po/pt_BR.po, po/tr.po, po/zh_CN.po, NEWS, po/LINGUAS, po/bs.po, po/ca.po, po/da.po, po/eu.po, po/he.po, po/id.po:
6213         New translations: bs, ca, da, eu, he, id, nb, nl, nn, pt, pt_BR, tr,
6214         zh_CN (stolen froM Debian)
6215
6216         * man/Attic/grpck.8, man/Attic/mkpasswd.8, man/Attic/pwck.8, man/pl/Attic/mkpasswd.8, man/pl/grpck.8, man/pl/pwck.8:
6217         Corrected section number.
6218
6219 2004-08-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
6220
6221         * man/zh_TW/chfn.1, man/zh_TW/chsh.1, man/zh_TW/groupadd.8, man/id/chsh.1, man/id/login.1, man/it/chfn.1, man/pl/chage.1, man/pl/groupadd.8, man/pl/groupmems.8, man/pl/lastlog.8, man/pl/login.1, man/pt_BR/groupadd.8, man/zh_CN/chfn.1, man/zh_CN/chsh.1, man/de/login.1, man/de/su.1, man/fr/chsh.1, man/fr/passwd.1, man/fr/usermod.8, man/hu/chfn.1, man/Attic/chage.1, man/Attic/groupadd.8, man/Attic/groupmems.8, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/usermod.8:
6222         Options description in alphabetical order.
6223
6224         * NEWS, src/login.c:
6225         Applied 036_pam_access_with_preauth.patch Debian patch submited by Bjorn
6226         Torkelsson <Bjorn.Torkelsson@hpc2n.umu.se>: add support for PAM account
6227         management to restrict access using pam_access when login is invoked with -f.
6228
6229 2004-06-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
6230
6231         * man/Attic/getspnam.3: added roff link to shadow(3).
6232
6233         * man/Makefile.am (man_MANS): added getspnam.3.
6234
6235 2004-06-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
6236
6237         * NEWS, lib/commonio.c, lib/getdef.c, src/vipw.c:
6238         Applied OWL shadow-4.0.4.1-owl-check-reads.diff patch by Solar Designer.
6239         Add checking for read errors in commonio and vipw/vigr (not doing so could
6240         result in data loss when the records are written back).
6241
6242         * NEWS: Add note about apply shadow-4.0.4.1-owl-tmp.diff OWL patch.
6243
6244         * src/useradd.c, configure.in:
6245         Remove looking for mkstemp() prototype and allways use mkstemp() (removed
6246         using mktemp if mkstemp() not found).
6247         Partialy based on tmp OWL patch by Solar Designer <solar@openwall.com>.
6248
6249         * NEWS, libmisc/pwdcheck.c:
6250         Fixed securirty bug which allow unauthorized account properties modification.
6251         Affected tools: chfn and chsh.
6252         Bug was discovered by Martin Schulze <joey@infodrom.org>.
6253
6254 2004-05-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
6255
6256         * NEWS: typo.
6257
6258         * NEWS, po/LINGUAS, po/it.po:
6259         added it translation (by Danilo Piazzalunga <danilopiazza@libero.it>).
6260
6261 2004-05-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
6262
6263         * NEWS: typos.
6264
6265         * po/sk.po: updated (by Peter Mann <Peter.Mann@tuke.sk>).
6266
6267 2004-05-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
6268
6269         * po/sk.po: run "make update-po".
6270
6271         * NEWS, po/LINGUAS, po/sk.po:
6272         added sk translation (by Mann <Peter.Mann@tuke.sk>, submited by Christian
6273         Perrier <bubulle@kheops.frmug.org>).
6274
6275 2004-05-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6276
6277         * configure.in:
6278         Use autoconf cache variables for file and directory location tests (by
6279         Maciej W. Rozycki  <macro@ds2.pg.gda.pl>).
6280
6281 2004-05-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
6282
6283         * man/Attic/passwd.5:
6284         Correct path directory delimiters (by Maciej W. Rozycki <macro@ds2.pg.gda.pl>).
6285
6286         * libmisc/xmalloc.c (malloc):
6287         Remove the declaration (by Maciej W. Rozycki <macro@ds2.pg.gda.pl>).
6288
6289 2004-04-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
6290
6291         * src/login.c, NEWS:
6292         Fixed handle -f option: now it works correctly without specify "-h
6293         <host>" if open login session localy is required (thanks for help
6294         investigate bug for Krzysztof Kotlenga).
6295
6296         * po/es.po: Updated (by Ruben Porras <nahoo82@telefonica.net>).
6297
6298 2004-04-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
6299
6300         * po/cs.po, po/de.po, po/el.po, po/fi.po, po/fr.po, po/ja.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6301         Run "update-po".
6302
6303 2004-04-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
6304
6305         * po/es.po: Updated to current (by run "update-po").
6306
6307         * po/es.po: Converted to utf-8.
6308
6309         * po/LINGUAS: Added es.
6310
6311         * po/es.po, NEWS:
6312         Added es translation (by Ruben Porras <nahoo82@telefonica.net>).
6313
6314 2004-04-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
6315
6316         * po/ko.po, NEWS:
6317         Updated ko translations (by Changwoo Ryu <cwryu@debian.org>).
6318
6319 2004-04-02  Tomasz Kłoczko  <kloczek@pld.org.pl>
6320
6321         * po/fi.po: iconv -f iso8859-9 -t utf8
6322
6323 2004-03-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
6324
6325         * libmisc/age.c:
6326         Use endsgent() conditionaly depending on SHADOWGRP (fix submited by Gabor Z.
6327         Papp <gzp@papp.hu>).
6328
6329         * po/LINGUAS, po/fi.po, NEWS:
6330         Added fi translation (by Tommi Vainikainen <thv@iki.fi>).
6331
6332         * README: Fixed shadow and shadow-commit lists on-line archives URLs.
6333
6334 2004-01-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
6335
6336         * NEWS, configure.in, man/fr/Makefile.am, man/hu/Makefile.am, man/it/Makefile.am:
6337         New version 4.0.4.1
6338         bug fixes in automake files for generate correct tar ball on "make dist":
6339         added midsiing "EXTRA_DIST = $(man_MANS)" in man/*/Makefile.am.
6340
6341         * man/ko/Makefile.am: New version 4.0.4.1
6342         bug fixes in automake files for generate correct tar ball on "make dist":
6343         added missing "EXTRA_DIST = $(man_MANS)" in man/*/Makefile.am.
6344
6345         * man/de/Makefile.am, man/es/Makefile.am: New version 4.0.4.1
6346         bug fixes in automake files for generate correct tar ball on "make dist":
6347         added midsiing "EXTRA_DIST = $(man_MANS)" in man/*/Makefile.am.
6348
6349         * configure.in: Fixed checking is avalaible st_rdev in struct stat.
6350
6351 2004-01-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
6352
6353         * po/pl.po: Typo.
6354
6355         * man/pl/useradd.8: Cleanups in SYNOPSIS.
6356
6357 2004-01-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
6358
6359         * po/pl.po: Cleanups.
6360
6361 2004-01-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6362
6363         * configure.in: Cleanups after autoupdate.
6364
6365 2004-01-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
6366
6367         * src/groupadd.c, po/sv.po, po/uk.po, po/ru.po, po/ko.po, po/pl.po, po/fr.po, po/ja.po, po/el.po, po/cs.po, po/de.po, man/zh_TW/groupadd.8, man/zh_CN/groupadd.8, man/pt_BR/groupadd.8, man/pl/groupadd.8, man/ja/groupadd.8, man/it/groupadd.8, man/Attic/groupadd.8, NEWS:
6368         Added missing information about -f options in groupadd usage mesage (document
6369         this also in man page).
6370
6371 2003-12-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
6372
6373         * lib/Attic/lastlog_.h, libmisc/log.c, libmisc/utmp.c, src/lastlog.c, src/login.c:
6374         More time() or gettimeofday() prevention overwrite memory on 64bit arch
6375         (partialy based on patch from MDK).
6376
6377         * po/sv.po, po/uk.po, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po:
6378         Post remove TCFS support "make update-po".
6379
6380         * man/Makefile.am: Removed getspnam.3 from EXTRA_DIST.
6381
6382         * po/POTFILES.in: Removed lib/tcfsio.c.
6383
6384         * lib/Attic/tcfsio.c, lib/Attic/tcfsio.h, lib/Makefile.am, src/passwd.c, src/userdel.c, NEWS, configure.in, doc/Attic/README.pam:
6385         Removed TCFS support (tcfs is dead).
6386
6387         * configure.in:
6388         Added using AM_MAINTAINER_MODE. AC_INIT without parameters.
6389
6390         * Attic/acconfig.h, configure.in:
6391         Cleanups on autoheadres level: use AC_DEFINE(VAR, VAL, [Comment]) for
6392         USE_PAM, HAVE_TCFS and TCFS_GDBM_SUPPORT.
6393
6394         * src/newusers.c, src/useradd.c, Attic/acconfig.h, autogen.sh, lib/Attic/pwpack.c, NEWS:
6395         Remove all old BSD_QUOTA dependent code.
6396
6397 2003-12-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
6398
6399         * lib/Makefile.am, libmisc/Makefile.am, src/Makefile.am:
6400         Removed -I$(top_srcdir) from INCLUDES (isn't neccessary becaus this is in
6401         DEFAULT_INCLUDES) - slightly shorter compile output.
6402
6403         * Makefile.am, configure.in:
6404         Added using AM_GNU_GETTEXT([external]) - removed intl SUBDIRS.
6405         Added locale.h to AC_CHECK_HEADERS() - lib/defines.h have part which depends
6406         on HAVE_LOCALE_H.
6407
6408         * lib/nscd.h: Added missing newline at end of file.
6409
6410         * Attic/acconfig.h: Remove unused (#un)defines.
6411
6412         * autogen.sh: Typo.
6413
6414         * autogen.sh: Much more simpler script - use autoreconf.
6415
6416         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6417         "make update-po".
6418
6419 2003-12-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6420
6421         * po/LINGUAS: Languages list for gettext 1.12.x.
6422
6423 2003-10-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
6424
6425         * po/pl.po: Kill fuzzy entries.
6426
6427 2003-10-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
6428
6429         * man/Attic/usermod.8:
6430         Typo: missing "." on end of sentence (submited by Stepan Kasal <kasal@ucw.cz>).
6431
6432 2003-09-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6433
6434         * po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po, po/cs.po, po/de.po, po/el.po, NEWS:
6435         convert all po/*.po files to utf-8.
6436
6437 2003-09-05  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6438
6439         * po/ru.po: - fixed header
6440
6441 2003-07-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
6442
6443         * po/pl.po, po/ru.po, po/sv.po, po/uk.po, libmisc/pam_pass.c, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po:
6444         Otput "passwd: password updated successfully\n" message on successfull
6445         password change (based on Debian changes).
6446
6447         * src/newgrp.c: Remove work around for unsecure gettext.
6448
6449 2003-06-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
6450
6451         * src/useradd.c, src/usermod.c:
6452         Added initializing memory in variables when get_groups() function is not called,
6453         and memory allocated for user_groups is not initialized (in both useradd and
6454         usermod when -G options is used and in usermod when -l option is used).
6455         That causing segfaults sometimes.
6456         This fix is importand but not critical because usermod and usermod aren't suid
6457         root.
6458         Problem reported and fixed by Alexey Voinov <voins@altlinux.ru>.
6459
6460 2003-06-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
6461
6462         * man/Attic/login.1: Fixed FILES section.
6463
6464         * src/chfn.c, src/chpasswd.c, src/chsh.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/login.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/suauth.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c:
6465         Indented.
6466
6467         * src/chage.c: Move *flg variables to global.
6468
6469         * Attic/acconfig.h: Comment for USG.
6470
6471 2003-05-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
6472
6473         * man/de/chfn.1, man/de/login.1:
6474         Fixed section name (s/NAME/BEZEICHNUNG/).
6475
6476         * man/de/chfn.1, man/de/chsh.1: Sync FILES section with en version.
6477
6478         * man/Attic/login.1: Typo (s/avr/var/).
6479
6480         * man/de/login.1: Sync FILES section with en man version.
6481
6482         * man/de/chfn.1, man/de/chsh.1, man/de/login.1: Remove ^M from EOL.
6483
6484         * man/de/login.1, man/de/Makefile.am, man/de/chfn.1, man/de/chsh.1, NEWS:
6485         Next round updates from Josef Spillner <josef@ggzgamingzone.org>: update
6486         chsh(1), login(1) and added new chfn(1) german man pages.
6487
6488         * NEWS: Added info about remove d_passwd(5), dialups(5) man pags.
6489
6490 2003-05-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
6491
6492         * NEWS, TODO, src/chfn.c, src/chpasswd.c, src/chsh.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/passwd.c, src/pwunconv.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c:
6493         One TODO entry gone: fix nscd flushing databases on change (use
6494         per service flushing method instead HUPing nscd process).
6495
6496         * lib/Makefile.am, lib/commonio.c, lib/nscd.c, lib/nscd.h, libmisc/Attic/nscd.c, libmisc/Attic/nscd.h, libmisc/Makefile.am:
6497         Move nscd.{c,h} from libmisc/ to lib/.
6498         Fix warning about implicit declaration of function `nscd_flush_cache' in lib/commonio.c.
6499
6500         * lib/pwauth.h: Fix pw_auth() prototype.
6501
6502         * libmisc/Attic/nscd.c, libmisc/Attic/nscd.h, libmisc/Makefile.am:
6503         Added header file for nscd communication functions.
6504
6505         * libmisc/chkname.c (good_name):
6506         fixed warning about comparison between pointer and integer.
6507
6508         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6509         "make update-po".
6510
6511         * src/useradd.c (main):
6512         chain create_mail() and small fix in usage message.
6513
6514         * src/userdel.c: Removed AUTH_METHODS code.
6515
6516         * lib/pwauth.c: Fixed pw_auth() prototype.
6517
6518         * src/sulogin.c, src/usermod.c: Removed AUTH_METHODS code.
6519
6520         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6521         "make update-po".
6522
6523         * src/useradd.c: Indent.
6524
6525         * man/ja/Attic/pwauth.8, man/ja/Makefile.am, man/pl/Attic/pwauth.8, man/pl/Makefile.am, src/passwd.c, src/useradd.c, NEWS, lib/pwauth.c, man/Attic/pwauth.8, man/Makefile.am:
6526         Cleanups continuations: removed old AUTH_METHODS dependent code,
6527         removed also pwauth(8) man page.
6528
6529         * man/pl/Makefile.am (man_MANS): remove d_passwd.5 man page.
6530
6531         * src/useradd.c, src/usermod.c, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6532         Cleanups in usage messages.
6533
6534         * src/newgrp.c: Cleanups in comments.
6535
6536         * po/uk.po, po/sv.po, po/ru.po, po/pl.po, po/ko.po, po/ja.po, po/fr.po, po/el.po, po/de.po, po/cs.po:
6537         "make update-po".
6538
6539         * lib/getdef.c (main): remove gettextize error messages from test code.
6540
6541         * NEWS: Cleanups.
6542
6543 2003-05-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6544
6545         * src/useradd.c, man/pl/useradd.8, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po, NEWS, TODO, etc/useradd, man/Attic/useradd.8:
6546         Added handle by useradd /etc/defaults/useradd::CREATE_MAIL_SPOOL={yes|no}.
6547         Now on adding user account can be added also created empty user mail
6548         spool. Curent code handle only mailbox.
6549         TODO: add handle create user mail spool in maildir format.
6550
6551         * TODO: Typo.
6552
6553         * src/chage.c (usage): fix missing ")".
6554         (main): updated commented description.
6555
6556         * src/useradd.c: Indent.
6557
6558         * man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8:
6559         Minor cleanups.
6560
6561         * man/Attic/chage.1, man/pl/chage.1:
6562         Rewrite for use claissic list form options descriptions.
6563
6564         * man/pl/groupadd.8:
6565         s/Polecenie groupadd posiada opcje:/Polecenie groupadd posiada następujące opcje:/
6566
6567         * TODO: ALL:
6568         move base passwd/shadow/group/gshadow operation to module for allow write
6569         diffrent backend modules for db, NIS, LDAP and others. Default backend it
6570         will be choose depending on /etc/nsswitch.conf and allow overrride this by
6571         -r <repository> options (where the <repository> can be file, db, nis
6572         nisplus, ldap .. like on /etc/nsswitch.conf in service column).
6573         passwd have old piece of code with handling -r option and it will be good
6574         finish this and propagate on other shadow tools for allow operate on other
6575         user databases by well known tools.
6576
6577         useradd:
6578         add handle /etc/defaults/useradd::CREATE_MAIL_SPOOL={yes,no} for allow
6579         create empty mail spool for added user.
6580
6581         * man/pl/Attic/d_passwd.5, man/pl/Attic/dialups.5: Removed.
6582
6583         * man/Attic/groupmems.8: Close few \fB by add \fR.
6584
6585         * man/Attic/groupadd.8, man/Attic/groupmems.8: Minor cleanups.
6586
6587 2003-05-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
6588
6589         * src/grpconv.c, src/grpunconv.c, src/pwconv.c, src/pwunconv.c:
6590         Move non-SHADOWPWD stub code to end of file (like in chage.c) and do not use
6591         gettextized message.
6592
6593         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6594         "make update-po".
6595
6596         * src/chage.c, NEWS:
6597         Now all code depend on SHADOWPWD. If shadow will not be configured on
6598         autoconf level for using shadow possword chage is olny stub which informs
6599         "chage not configured for shadow password support."
6600
6601         * man/it/Makefile.am: Removed EXTRA_DIST (not neccessary).
6602
6603         * man/es/Makefile.am: Removed groups.1 (doen't exist es groups(1)).
6604
6605         * man/de/Makefile.am (man_MANS): added login.1.
6606
6607         * man/de/Makefile.am: Removed EXTRA_DIST (isn't neccessary now).
6608
6609         * man/hu/Makefile.am, man/ja/Makefile.am, man/ko/Makefile.am, man/pl/Makefile.am, man/de/Makefile.am, man/fr/Makefile.am, NEWS, man/Makefile.am:
6610         Install groups(1) man page (moved from EXTRA_DIST to man_MANS).
6611
6612         * po/.cvsignore:
6613         Added files generated by gettextize from gettext 0.11.5.
6614
6615         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6616         Updated after removing dialup tools.
6617
6618         * po/POTFILES.in: Removed lib/{dialchk,dialup}.c and src/dpasswd.c.
6619
6620 2003-05-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
6621
6622         * libmisc/shell.c (shell): do not gettexitize DEBUG message.
6623
6624         * src/chsh.c, src/grpconv.c, src/login.c, src/logoutd.c, src/sulogin.c, src/vipw.c, libmisc/Attic/login_access.c, libmisc/getdate.y, libmisc/limits.c, libmisc/obscure.c, libmisc/setupenv.c, lib/Attic/getpass.c, lib/pwauth.c:
6625         Removed "#if 0 .. #endif" dead code.
6626
6627         * libmisc/utmp.c: Fixed unterminated #if.
6628
6629         * libmisc/Attic/login_access.c (resolve_hostname):
6630         cleanup: removed #if 1 .. #endif.
6631
6632         * libmisc/.cvsignore: Added getdate.c.
6633
6634         * libmisc/Attic/getdate.c:
6635         Removed - this file is generated by bison/yacc.
6636
6637         * configure.in:
6638         Change file name passwd in AC_INIT argument from lib/dialchk.c to src/passwd.c.
6639
6640         * src/su.c:
6641         Removed dead code (#if 0 .. #endif) with call motd() and mailcheck()
6642         (was commnted because GNU su doesn't do this).
6643
6644 2003-05-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
6645
6646         * src/Attic/dpasswd.c, src/login.c, src/Makefile.am, man/pl/Attic/dpasswd.8, man/pl/Makefile.am, man/ja/Attic/dpasswd.8, man/ja/Makefile.am, man/Attic/dpasswd.8, man/Makefile.am, lib/Attic/dialchk.c, lib/Attic/dialchk.h, lib/Attic/dialup.c, lib/Attic/dialup.h, lib/Makefile.am, lib/getdef.c, etc/Attic/login.defs.linux, etc/login.defs, NEWS:
6647         Removed old dpasswd and DIALUPS_CHECK_ENAB login.defs handling code from login.
6648
6649         * doc/Attic/ANNOUNCE, doc/Makefile.am, NEWS: Removed old doc/ANNOUNCE.
6650
6651         * src/login.c, lib/getdef.c, etc/Attic/login.defs.linux, NEWS:
6652         Remove NO_PASSWORD_CONSOLE code.
6653
6654 2003-05-03  Tomasz Kłoczko  <kloczek@pld.org.pl>
6655
6656         * libmisc/pwd2spwd.c, libmisc/utmp.c, libmisc/entry.c, libmisc/isexpired.c, lib/sgetspent.c, lib/shadow.c, lib/Attic/putpwent.c, lib/Attic/pwent.c, lib/Attic/pwpack.c, lib/defines.h, lib/pwio.c, lib/sgetpwent.c, Attic/acconfig.h, configure.in:
6657         Remove old SVR4, ATT_AGE, ATT_COMMENT dependent code.
6658
6659         * src/chage.c:
6660         Remove some ageing code which was not used if SHADOWPWD isn't defined.
6661         Now handling mindays, maxdays and lastday also depends on SHADOWPWD.
6662
6663 2003-05-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
6664
6665         * man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/shadowconfig.8, man/Attic/su.1, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8:
6666         Reformated.
6667
6668         * etc/login.defs:
6669         Use FHS 2.x compliant paths to lastlog, sulog, mail spool and also change
6670         ENV_SUPATH to PATH=/sbin:/bin:/usr/sbin:/usr/bin and
6671         ENV_PATH to PATH=/bin:/usr/bin
6672
6673         * old/Attic/Makefile.am, old/Attic/Makefile.linux, old/Attic/Makefile.sun4, old/Attic/Makefile.svr4, old/Attic/Makefile.xenix, old/Attic/config.h.linux, old/Attic/config.h.sun4, old/Attic/config.h.svr4, old/Attic/config.h.xenix, old/Attic/orig-config.h, old/Attic/pwconv-old.8, old/Attic/pwconv-old.c, old/Attic/pwconv.8, old/Attic/pwd.h.m4, old/Attic/pwunconv-old.8, old/Attic/pwunconv-old.c, old/Attic/pwunconv.8, old/Attic/scologin.c, old/Attic/vipw.8:
6674         Removed old stuff.
6675
6676 2003-04-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
6677
6678         * po/pl.po, po/ru.po, po/sv.po, po/uk.po, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po:
6679         make update-po
6680
6681         * src/su.c: Remove not mached #endif after removing ATT_AGE code.
6682
6683         * man/ko/passwd.5: Remove ^M from end of line.
6684
6685         * src/chage.c, src/chpasswd.c, src/login.c, src/newusers.c, src/passwd.c, src/pwunconv.c, src/su.c, src/useradd.c, Attic/acconfig.h, NEWS, configure.in:
6686         Removed old ATT_AGE (account ageing in passwd file) dependent code.
6687
6688         * po/pl.po: Fix chage and lastlog messages.
6689
6690 2003-04-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
6691
6692         * libmisc/limits.c, src/logoutd.c:
6693         More utmp/utmpx fixes: use endutend() or endutxend() depending on HAVE_UTMPX_H.
6694
6695         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6696         Run "make update-po" after remove SVR4 code and fix duplicated entries in sv.po.
6697
6698         * NEWS, src/login.c, src/logoutd.c, src/useradd.c:
6699         Remove old SVR4 and SVR4_SI86_EUA dependent code from login, useradd and
6700         logoutd.
6701
6702 2003-04-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
6703
6704         * man/pl/usermod.8: Remove "OD TŁUMACZA" section.
6705
6706         * man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/grpck.8, man/pl/passwd.1, man/pl/pwck.8, man/pl/useradd.8, man/pl/userdel.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/grpck.8, man/Attic/passwd.1, man/Attic/pwck.8, man/Attic/useradd.8, man/Attic/userdel.8:
6707         Added EXIT VALUES section with full description exit codes.
6708
6709         * src/groupadd.c: Typo (s/nut/not/).
6710
6711         * man/Attic/shadowconfig.8: Merge changes from Debian.
6712
6713         * NEWS, man/Attic/passwd.5:
6714         Remove text about password aging from passwd(5) (based on Debian changes).
6715
6716         * po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po, src/lastlog.c, man/Attic/lastlog.8, man/it/lastlog.8, man/ja/lastlog.8, man/pl/lastlog.8:
6717         More unification in lastlog command syntax.
6718
6719         * man/Attic/lastlog.8, man/it/lastlog.8, man/ja/lastlog.8, man/pl/lastlog.8:
6720         Unifications in SYNOPSIS.
6721
6722         * man/it/gpasswd.1, man/it/groupadd.8, man/it/groupdel.8, man/it/groupmod.8, man/it/grpck.8, man/it/lastlog.8, man/it/useradd.8, man/it/userdel.8, man/it/usermod.8:
6723         Remove ^M from end of line.
6724
6725         * man/Attic/gpasswd.1, man/Attic/groupadd.8:
6726         Indentation in FILES section.
6727
6728         * src/pwconv.c, src/useradd.c, src/userdel.c:
6729         s/bad command syntax/invalid command syntax/
6730
6731         * src/userdel.c:
6732         Indent by hand (seems indent have problems with complex conditions).
6733
6734         * man/ru/Makefile.am: man_MANS: s#passwd.1#passwd.5#
6735
6736         * po/pl.po: s/nie mogę/nie można/
6737
6738         * po/fr.po: Emoticon removed.
6739
6740         * NEWS, configure.in, man/Makefile.am, man/ru/.cvsignore, man/ru/Makefile.am, man/ru/passwd.5:
6741         Added ru passwd(1) man page from KSI resources.
6742
6743         * man/zh_CN/Makefile.am, man/zh_CN/chfn.1, man/zh_CN/chsh.1, man/zh_TW/Makefile.am, man/zh_TW/chfn.1, man/zh_TW/chsh.1, man/ja/Attic/dpasswd.8, man/ja/Attic/mkpasswd.8, man/ja/Attic/pw_auth.3, man/ja/Attic/pwauth.8, man/ja/Attic/shadowconfig.8, man/ja/Makefile.am, man/ja/chage.1, man/ja/chfn.1, man/ja/chpasswd.8, man/ja/chsh.1, man/ja/expiry.1, man/ja/faillog.5, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/groups.1, man/ja/grpck.8, man/ja/id.1, man/ja/lastlog.8, man/ja/limits.5, man/ja/login.1, man/ja/login.access.5, man/ja/login.defs.5, man/ja/logoutd.8, man/ja/newgrp.1, man/ja/newusers.8, man/ja/passwd.1, man/ja/passwd.5, man/ja/porttime.5, man/ja/pwck.8, man/ja/pwconv.8, man/ja/shadow.3, man/ja/shadow.5, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/vipw.8, NEWS, man/cs/Makefile.am, man/cs/id.1:
6744         Added chch(1), chfn(1) man pages from chinese man pages translation
6745         project.
6746         Added id(1) man page czech man pages translation project.
6747         Updated ja man pages and added expiry(1).
6748
6749         * man/hu/groups.1, man/hu/login.1:
6750         Remove info about $HOME/.profile from FILES section (this does not depends
6751         stricte on shadow).
6752
6753         * configure.in, man/Makefile.am, man/es/Makefile.am:
6754         Added es man pages to ac/am suit.
6755
6756         * man/es/.cvsignore, man/hu/.cvsignore, man/pt_BR/.cvsignore, man/zh_CN/.cvsignore, man/zh_TW/.cvsignore:
6757         Added .cvsignore files.
6758
6759         * man/hu/Makefile.am, man/hu/su.1:
6760         Added su(1) man page from hungarian man pages translation project.
6761
6762 2003-04-26  Tomasz Kłoczko  <kloczek@pld.org.pl>
6763
6764         * NEWS: Ready for gettext 0.11.5, automake 1.7.4, autoconf 2.57.
6765         Many cleanups and unifications in man pages.
6766
6767         * man/pt_BR/gpasswd.1, man/pt_BR/groupadd.8, man/pt_BR/groupdel.8, man/pt_BR/groupmod.8, man/pt_BR/shadow.5, man/zh_CN/chpasswd.8, man/zh_CN/groupadd.8, man/zh_CN/groupdel.8, man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/userdel.8, man/zh_CN/usermod.8, man/zh_TW/groupadd.8, man/zh_TW/groupdel.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/userdel.8, man/zh_TW/usermod.8, man/ko/login.1, man/ko/su.1, man/pl/chage.1, man/pl/chfn.1, man/pl/chsh.1, man/pl/expiry.1, man/pl/gpasswd.1, man/pl/groupmems.8, man/pl/groups.1, man/pl/id.1, man/pl/lastlog.8, man/pl/login.1, man/pl/newgrp.1, man/pl/passwd.1, man/pl/su.1, man/pl/sulogin.8, man/pl/useradd.8, man/pl/usermod.8, man/ja/Attic/mkpasswd.8, man/ja/chage.1, man/ja/chfn.1, man/ja/chsh.1, man/ja/faillog.5, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/groups.1, man/ja/grpck.8, man/ja/id.1, man/ja/lastlog.8, man/ja/limits.5, man/ja/login.1, man/ja/login.access.5, man/ja/logoutd.8, man/ja/newgrp.1, man/ja/passwd.1, man/ja/passwd.5, man/ja/porttime.5, man/ja/pwck.8, man/ja/shadow.3, man/ja/shadow.5, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/hu/chsh.1, man/hu/gpasswd.1, man/hu/groups.1, man/hu/login.1, man/hu/newgrp.1, man/hu/passwd.1, man/it/gpasswd.1, man/it/groupadd.8, man/it/groupdel.8, man/it/groupmod.8, man/it/grpck.8, man/it/lastlog.8, man/it/shadow.5, man/it/useradd.8, man/it/userdel.8, man/it/usermod.8, man/cs/shadow.5, man/es/su.1, man/fr/chage.1, man/fr/faillog.5, man/fr/gpasswd.1, man/fr/shadow.5, man/fr/su.1, man/fr/userdel.8, man/fr/usermod.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8:
6768         Fixes: correct utmp/wtmp paths.
6769         Unifications: bold commnanda and italify other file names.
6770         Other minor changes and cleanups and unifications.
6771
6772         * libmisc/limits.c: More utmpx/utmp fixes.
6773
6774         * src/chpasswd.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmems.c, src/groupmod.c, src/id.c, src/login.c, src/newgrp.c, src/passwd.c, src/useradd.c, src/userdel.c, src/usermod.c, po/cs.po, po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po, po/sv.po, po/uk.po:
6775         Usage help message unification (s/usage:/Usage:/).
6776
6777         * TODO: Missing "are".
6778
6779         * src/logoutd.c, src/userdel.c, NEWS:
6780         Handle also utmpx if avalaile in userdel and logoutd.
6781
6782 2003-04-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
6783
6784         * src/sulogin.c: Remove unused utent declaration.
6785
6786         * src/sulogin.c, src/login.c:
6787         Remove #include <utmp.h> and <utmpx.h>. This comes with #include "prototypes.h".
6788
6789         * lib/prototypes.h:
6790         "#include <utmp.h>" or "#include <utmpx.h>" depending on HAVE_UTMPX_H.
6791
6792         * libmisc/failure.c:
6793         Remove "#include <utmp.h>" (this is included in failure.h).
6794
6795         * configure.in:
6796         On detect mail spool directory location try first /var/mail.
6797
6798 2003-04-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
6799
6800         * libmisc/Attic/getdate.c, libmisc/Attic/login_access.c, libmisc/Attic/login_desrpc.c, libmisc/Attic/login_krb.c, libmisc/Attic/nscd.c, libmisc/Attic/setup.c, libmisc/entry.c, libmisc/env.c, libmisc/failure.c, libmisc/fields.c, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/list.c, libmisc/log.c, libmisc/loginprompt.c, libmisc/mail.c, libmisc/motd.c, libmisc/myname.c, libmisc/obscure.c, libmisc/pam_pass.c, libmisc/pwd2spwd.c, libmisc/pwd_init.c, libmisc/pwdcheck.c, libmisc/rlogin.c, libmisc/salt.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/strtoday.c, libmisc/sub.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/tz.c, libmisc/ulimit.c, libmisc/utmp.c, libmisc/valid.c, libmisc/xmalloc.c, libmisc/Attic/chkshell.c, libmisc/addgrps.c, libmisc/age.c, libmisc/basename.c, libmisc/chkname.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, libmisc/copydir.c:
6801         Indent all using current .indent.pro settings.
6802
6803         * po/Makevars: New file neccessary for gettext >=0.11.5.
6804
6805         * man/Makefile.am: Removed getspnam.3 from man_MANS (dos not exist).
6806
6807         * po/de.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/ru.po:
6808         Fixes after filtering gettext 0.11.5 (missing headers elements, inforrect
6809         format strings).
6810
6811 2003-04-21  Tomasz Kłoczko  <kloczek@pld.org.pl>
6812
6813         * NEWS, man/de/passwd.1:
6814         updated german passwd(1) man page (by Josef Spillner <josef@ggzgamingzone.org>)
6815
6816 2003-03-12  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6817
6818         * po/pl.po: - updated; terminology unification
6819
6820 2003-02-28  Paweł Gołaszewski  <blues@pld.org.pl>
6821
6822         * etc/login.defs: - missing "MD5_CRYPT_ENAB  yes" added
6823
6824 2003-01-20  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6825
6826         * configure.in: - added Makefiles for man/zh_{CN,TW}
6827
6828         * man/Makefile.am, man/zh_CN/Makefile.am, man/zh_CN/chpasswd.8, man/zh_CN/groupadd.8, man/zh_CN/groupdel.8, man/zh_CN/groupmod.8, man/zh_CN/useradd.8, man/zh_CN/userdel.8, man/zh_CN/usermod.8, man/zh_TW/Makefile.am, man/zh_TW/groupadd.8, man/zh_TW/groupdel.8, man/zh_TW/groupmod.8, man/zh_TW/useradd.8, man/zh_TW/userdel.8, man/zh_TW/usermod.8:
6829         - added zh man pages from MDK (2 x 6) and from cman (1)
6830
6831 2003-01-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6832
6833         * man/ja/shadow.3, man/pl/shadow.3, man/Attic/shadow.3:
6834         sync spwd structure declaration with current glibc declaration (tahnks for
6835         point this bug to Michael Kerrisk <michael.kerrisk@gmx.net>).
6836
6837         * man/pl/faillog.5: s/konsolę/terminal/
6838
6839 2002-12-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
6840
6841         * src/Makefile.am: typo (s/EXTRA_DOST/EXTRA_DIST/).
6842
6843 2002-10-14  Tomasz Kłoczko  <kloczek@pld.org.pl>
6844
6845         * src/Makefile.am:
6846         fixed making vigr symlink to vipw (not vipw to vigr) in install-exec-hook (fix submited by
6847         Dimitar Zhekov <jimmy@is-vn.bg>).
6848
6849         * debian/Attic/login.copyright, debian/Attic/login.postinst, debian/Attic/login.postrm, debian/Attic/login.preinst, debian/Attic/login.prerm, debian/Attic/logoutd.init, debian/Attic/passwd.conffiles, debian/Attic/passwd.copyright, debian/Attic/passwd.cron, debian/Attic/passwd.init, debian/Attic/passwd.postinst, debian/Attic/passwd.postrm, debian/Attic/porttime, debian/Attic/rules, debian/Attic/secure-su.README, debian/Attic/secure-su.conffiles, debian/Attic/secure-su.copyright, debian/Attic/secure-su.postrm, debian/Attic/secure-su.preinst, debian/Attic/securetty, debian/Attic/shadowconfig.sh, debian/Attic/Makefile.am, debian/Attic/changelog, debian/Attic/checksums, debian/Attic/control, debian/Attic/control.gnu, debian/Attic/control.linux, debian/Attic/login.conffiles, Makefile.am, configure.in:
6850         removed debian directory.
6851
6852 2002-10-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
6853
6854         * NEWS, src/newgrp.c:
6855         Use CLOSE_SESSIONS depending code only when USE_PAM.
6856         The problem was reported by Mattias Webjorn Eriksson using Slackware
6857         8.1 and reproduced it using slackware-current (9.0beta) (fix submited by
6858         Simon Williams <simon@no-dns-yet.org.uk>).
6859
6860 2002-10-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6861
6862         * man/ja/login.1, man/ja/logoutd.8, man/pl/login.1, man/pl/logoutd.8, man/Attic/login.1, man/Attic/logoutd.8, man/hu/login.1:
6863         changed utmp and wtmp files paths (s#/etc/utmp/#/var/run/utmp#; s#/etc/wtmp#/var/log/wtmp#)
6864
6865         * po/ru.po, configure.in: added ru translation (from KSI resources).
6866
6867 2002-09-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6868
6869         * NEWS, libmisc/failure.c:
6870         libbmisc/failure.c (too_many_failures): incorrect if() condition in non-PAM
6871         dependent code in fail login handling (fixed by Krzysztof Oledzki <ole@ans.pl>).
6872
6873 2002-08-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
6874
6875         * man/pl/useradd.8, man/Attic/useradd.8, NEWS:
6876         document useradd and groupadd -M option in en and pl man pages
6877         (by Jakub Mikusek <mick3y@o.k.pl>).
6878
6879         * configure.in: start prepare 4.0.4.
6880
6881 2002-03-18  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6882
6883         * man/ja/Attic/dpasswd.8, man/ja/Attic/shadowconfig.8, man/ja/chpasswd.8, man/ja/faillog.8, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/id.1, man/ja/lastlog.8, man/ja/login.defs.5, man/ja/newusers.8, man/ja/su.1, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/vipw.8:
6884         - updated to man-pages-ja-20020315 (except cvs tags)
6885
6886 2002-03-15  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6887
6888         * TODO: - remove already done pl man updates from the list
6889
6890 2002-03-13  Tomasz Kłoczko  <kloczek@pld.org.pl>
6891
6892         * man/ko/.cvsignore, man/ko/Makefile.am, man/ko/chfn.1, man/ko/chsh.1, man/ko/groups.1, man/ko/id.1, man/ko/login.1, man/ko/newgrp.1, man/ko/passwd.5, man/ko/su.1:
6893         added ko man pages.
6894
6895         * man/de/.cvsignore, man/de/Makefile.am:
6896         automake files for de man pages.
6897
6898         * TODO: updated.
6899
6900         * man/it/.cvsignore, man/it/Makefile.am, man/id/.cvsignore, man/id/Attic/adduser.8, man/id/Makefile.am, man/id/useradd.8, man/Makefile.am, man/cs/.cvsignore, man/cs/Makefile.am, man/fr/.cvsignore, man/fr/Makefile.am, configure.in, NEWS:
6901         added cs, de, fr, id, it, ko man pages to ac/am.
6902
6903 2002-03-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
6904
6905         * po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/de.po, po/el.po:
6906         "make update-po"
6907
6908         * po/de.po, NEWS, configure.in:
6909         added de translation (by Frank Schmid <frank@cs-schmid.de>).
6910
6911         * NEWS: added info about Solar patch for man pages.
6912
6913 2002-03-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
6914
6915         * man/it/usermod.8, man/it/vigr.8, man/it/vipw.8, man/it/Attic/adduser.8, man/it/chfn.1, man/it/chsh.1, man/it/gpasswd.1, man/it/groupadd.8, man/it/groupdel.8, man/it/groupmod.8, man/it/groups.1, man/it/grpck.8, man/it/grpconv.8, man/it/grpunconv.8, man/it/id.1, man/it/lastlog.8, man/it/login.1, man/it/newgrp.1, man/it/passwd.1, man/it/passwd.5, man/it/pwconv.8, man/it/pwunconv.8, man/it/shadow.5, man/it/useradd.8, man/it/userdel.8, man/id/Attic/adduser.8, man/id/chsh.1, man/id/login.1, man/fr/Attic/adduser.8, man/fr/chage.1, man/fr/chpasswd.8, man/fr/chsh.1, man/fr/faillog.5, man/fr/gpasswd.1, man/fr/groups.1, man/fr/id.1, man/fr/newgrp.1, man/fr/passwd.1, man/fr/passwd.5, man/fr/shadow.5, man/fr/su.1, man/fr/useradd.8, man/fr/userdel.8, man/fr/usermod.8, man/es/login.1, man/es/passwd.1, man/es/su.1, man/de/chsh.1, man/de/groups.1, man/de/login.1, man/de/passwd.1, man/de/su.1, man/cs/passwd.5, man/cs/shadow.5:
6916         added some raw cs, de, es, fr, id, it man pages from national
6917         man pages translation projects (all man pages not yet added to Makefile.am
6918         files because all need some work).
6919
6920         * man/hu/chfn.1, man/hu/id.1:
6921         added id(1) chfn(1) from hu man pages translation project (it need some work
6922         because this documents describes GNU version id and chfn from util-linux).
6923
6924         * man/hu/Makefile.am, man/hu/login.1:
6925         added login(1) man page from hu man pages translation project.
6926
6927         * po/POTFILES.in: updated (suath.c moved to src/).
6928
6929         * src/Makefile.am: added su_SOURCES with "su.c suauth.c".
6930
6931         * libmisc/Makefile.am:
6932         remove suauth.c from libmisc_la_SOURCES (varialbles and functions from
6933         this file are usesd only in su).
6934
6935         * libmisc/Attic/suauth.c, src/suauth.c: move suauth.c o src/.
6936
6937         * libmisc/Attic/suauth.c:
6938         move "struct passwd pwent" outside #ifdef SU_ACCESS.
6939
6940 2002-03-09  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6941
6942         * man/pl/chage.1, man/pl/chfn.1, man/pl/chsh.1, man/pl/expiry.1, man/pl/gpasswd.1, man/pl/groups.1, man/pl/id.1, man/pl/login.1, man/pl/newgrp.1, man/pl/passwd.1, man/pl/su.1:
6943         - sync with en versions
6944
6945         * man/Attic/login.1, man/Attic/newgrp.1, man/Attic/passwd.1, man/Attic/su.1, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chsh.1, man/Attic/expiry.1, man/Attic/gpasswd.1, man/Attic/groups.1, man/Attic/id.1:
6946         - update to chage.1; formatting/typo fixes
6947
6948 2002-03-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
6949
6950         * po/uk.po, po/ko.po, po/pl.po, po/sv.po, po/ja.po, po/cs.po, po/el.po, po/fr.po:
6951         "make update-po"
6952
6953 2002-03-09  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6954
6955         * man/pt_BR/groupadd.8, man/pt_BR/groupdel.8, man/pt_BR/groupmod.8, man/pt_BR/shadow.5, man/pl/userdel.8, man/pl/usermod.8, man/pl/sulogin.8, man/pl/useradd.8, man/pl/pwconv.8, man/pl/su.1, man/pl/Attic/mkpasswd.8, man/pl/Attic/pwauth.8, man/pl/newgrp.1, man/pl/passwd.5, man/pl/login.defs.5, man/pl/chpasswd.8, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmems.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/login.1, man/hu/groups.1, man/hu/newgrp.1, man/ja/Attic/mkpasswd.8, man/ja/Attic/pw_auth.3, man/ja/Attic/pwauth.8, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/groups.1, man/ja/grpck.8, man/ja/id.1, man/ja/lastlog.8, man/ja/login.1, man/ja/login.defs.5, man/ja/newgrp.1, man/ja/passwd.5, man/ja/pwck.8, man/ja/shadow.5, man/ja/su.1, man/ja/sulogin.8, man/ja/useradd.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/vipw.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8:
6956         - further "SEE ALSO" references sorting
6957
6958 2002-03-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
6959
6960         * man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.5, man/Attic/su.1, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8, man/Attic/chpasswd.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.5, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Makefile.am:
6961         merged shadow-4.0.0-owl-man.patch by Solar Designer <solar@openwall.com>.
6962
6963         * NEWS: updated for 4.0.3.
6964
6965         * libmisc/Attic/suauth.c, libmisc/utmp.c, src/login.c, src/su.c:
6966         swapped utent dnd pwent efinition/extern and now shadow source can be configured
6967         --with-shared (fix by Dimitar Zhekov <jimmy@is-vn.bg>).
6968
6969 2002-03-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
6970
6971         * configure.in: start prepare 4.0.3.
6972
6973         * src/Makefile.am:
6974         use ln -sf instead ln -s in install-exec-hok (fix pointed by Dimitar Zhekov
6975         <jimmy@is-vn.bg>).
6976
6977 2002-03-02  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6978
6979         * man/pl/passwd.1: sync with en version
6980
6981         * man/Attic/passwd.1: - they -> his/her, user's
6982         - typos
6983         - fix sentence about "writing down"
6984
6985         * man/Attic/passwd.1: relocation by NAKANO Takeo
6986
6987 2002-02-28  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6988
6989         * man/hu/passwd.1: missing "-"
6990
6991         * man/ja/Attic/shadowconfig.8, man/ja/passwd.5, man/ja/shadow.5:
6992         - updated to man-pages-ja-20020215
6993
6994 2002-02-23  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
6995
6996         * po/cs.po, po/fr.po, po/pl.po, po/sv.po, po/uk.po, man/pl/useradd.8:
6997         - typos in pl/useradd.8; commented out unsupported -r option description
6998         - useradd "usage" formatting fixes
6999         - fix translation in uk.po
7000
7001 2002-02-18  Tomasz Kłoczko  <kloczek@pld.org.pl>
7002
7003         * configure.in: release 4.0.2.
7004
7005 2002-02-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
7006
7007         * Attic/shadow-utils.spec.in, Makefile.am, configure.in, shadow.spec.in:
7008         rename spec file s/shadow-utils.spec/shadow.spec/
7009
7010         * po/cs.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/sv.po, po/uk.po:
7011         update-po before release.
7012
7013         * po/ko.po, po/pl.po: cleanups.
7014
7015 2002-02-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
7016
7017         * man/pl/Attic/adduser.8, man/pl/grpconv.8, man/pl/grpunconv.8, man/pl/pwunconv.8, man/pl/sg.1, man/pl/vigr.8, man/ja/Attic/adduser.8, man/ja/grpconv.8, man/ja/grpunconv.8, man/ja/pwunconv.8, man/ja/sg.1, man/ja/vigr.8, man/hu/sg.1, man/Attic/adduser.8, man/Attic/grpconv.8, man/Attic/grpunconv.8, man/Attic/pwunconv.8, man/Attic/sg.1, man/Attic/vigr.8:
7018         placa ".so man<level>/<man_page>.<level>" in roff .so includes (seems some
7019         man page viewers do not handles correctly man documents without subdirectory
7020         name in roff .so incude).
7021
7022 2002-01-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
7023
7024         * po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/el.po, NEWS:
7025         resolve many fuzzy translations also all this which may cause problems on
7026         displaing long uid/gid.
7027
7028         * src/id.c, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/el.po, po/fr.po, po/ja.po:
7029         drop translate some messages in id output (about {,e}{u,g}id).
7030
7031 2002-01-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
7032
7033         * README: s#password: cvs#password: [empty password]#
7034
7035 2002-01-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
7036
7037         * NEWS: two new entries.
7038
7039         * libmisc/chkname.c (good_name):
7040         allow usernames ending with "$" for allow create machine
7041         acounts for samba (thanks for point this problem in 4.0.1 by
7042         Jerome Borsboom <borsboom@tch.fgg.eur.nl>).
7043
7044         * src/pwck.c, src/useradd.c, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/el.po, po/fr.po, po/ja.po, po/ko.po:
7045         s/invalid user name `%s'/invalid user name '%s'/
7046
7047 2002-01-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
7048
7049         * configure.in:
7050         fix in libpam_misc detection (removed one "," AC_CHECK_LIB()).
7051         Thanks to Silvan Minghetti for report this.
7052
7053 2002-01-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7054
7055         * NEWS: start prepare to 4.0.2.
7056
7057         * po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po:
7058         updated.
7059
7060         * configure.in: It is good time to release 4.0.1.
7061
7062         * libmisc/.indent.pro, lib/.indent.pro: added -pcs option.
7063
7064         * TODO: some things goes out other in.
7065
7066         * src/newgrp.c, NEWS:
7067         added ability to log session closes in newgrp (look at long nice comments
7068         inside source code :_) by Joseph Parmelee <jparmele@wildbear.com>.
7069
7070         * src/groupadd.c, src/useradd.c:
7071         next part fixes for handle long UID/GID (by Thorsten Kukuk <kukuk@suse.de>).
7072
7073         * lib/getdef.c, lib/getdef.h:
7074         adeded getdef_unum(): get unsigned numerical value from table of
7075         definitions (Thorsten Kukuk <kukuk@suse.de>).
7076
7077         * NEWS: updated.
7078
7079         * libmisc/isexpired.c:
7080         remove "#if defined(SHADOWPWD)" (not removed during remove AGING).
7081
7082         * etc/Makefile.am: useradd config file added to EXTRA_DIST.
7083
7084 2002-01-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
7085
7086         * po/sv.po, po/uk.po, po/cs.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po:
7087         update.
7088
7089         * src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, src/vipw.c, src/.indent.pro, src/Attic/dpasswd.c, src/Attic/mkpasswd.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupmems.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c:
7090         Add -pcs to .indent.pro file and reindent all code.
7091         Remove "\n" from all SYSLOG() messages.
7092
7093         * NEWS: s/SuSe/SuSE/
7094
7095 2001-12-22  Tomasz Kłoczko  <kloczek@pld.org.pl>
7096
7097         * man/pl/useradd.8, man/Attic/useradd.8: documment -o option.
7098
7099         * man/pl/usermod.8, man/pl/chfn.1, man/pl/chsh.1, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/id.1, man/pl/login.1, man/pl/newgrp.1, man/pl/passwd.1, man/pl/su.1, man/pl/useradd.8, man/pl/userdel.8:
7100         correct package name (s/shadow-password/shadow/).
7101
7102         * src/chage.c, src/expiry.c, src/login.c, src/passwd.c, src/su.c, libmisc/age.c, libmisc/isexpired.c, NEWS, configure.in:
7103         Finish integrate AGING code into SHADOWPW.
7104         Remove handle old HAVE_USERSEC_H code.
7105
7106         * po/uk.po: typo.
7107
7108         * man/pl/passwd.1, man/ja/passwd.1, man/Attic/chpasswd.8, man/Attic/dpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1:
7109         cleanups.
7110
7111         * src/Attic/dpasswd.c, src/Attic/mkpasswd.c, src/expiry.c, src/grpck.c, src/id.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/chfn.c, src/chsh.c, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/el.po, po/fr.po, man/Attic/useradd.8:
7112         standarize usage messages syntax.
7113
7114         * man/pl/useradd.8, man/pl/usermod.8, man/pl/vipw.8, man/pl/userdel.8:
7115         removed duplicated man page text.
7116
7117         * src/chage.c, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po, po/cs.po, po/el.po, po/fr.po:
7118         standarize usage meissages syntax.
7119
7120         * src/chage.c, NEWS (main):
7121         merge part Solar shadow-4.0.0-owl-pam-auth.diff patch with reorder
7122         nitialize PAM and checkin is chage is runed by root or not - now chage can be
7123         runed from non-root account for checking by user own accout information.
7124
7125         * src/pwck.c: indent source.
7126
7127         * src/pwck.c (main): remove old work around for Slackware bug.
7128
7129 2001-12-20  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
7130
7131         * man/ja/Attic/adduser.8, man/ja/Makefile.am, man/ja/limits.5, man/ja/pwconv.8:
7132         - updated to man-pages-ja-20011215
7133
7134 2001-11-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
7135
7136         * src/grpck.c:
7137         remove check for a Slackware bug (make sure GID is not -1; it was special
7138         meaning for some syscalls).
7139
7140         * src/newgrp.c, src/pwck.c, src/su.c, src/useradd.c, src/usermod.c, src/groupadd.c, src/groupmod.c, src/id.c, NEWS:
7141         fixes for handle/print correctly 32bit uid/gid (Thorsten Kukuk <kukuk@suse.de>).
7142
7143         * src/chage.c: - break usage vomment line.
7144
7145         * lib/defines.h:
7146         removed bunch spaces on end line in conditionale #include <errno.h>
7147         which in some cases dissallow compile correctly shadow (thanks for
7148         Silvan Minghetti <bullet@users.sourceforge.net>).
7149
7150 2001-11-17  Michał Moskal  <malekith@pld.org.pl>
7151
7152         * NEWS:
7153         - mention fix for SEGV when using pwck -s on /etc/passwd file with
7154           empty lines in it
7155
7156         * lib/commonio.c:
7157         - installed fix for SEGV when using pwck -s on /etc/passwd file with
7158           empty lines in it
7159
7160 2001-11-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
7161
7162         * libmisc/chkname.c, NEWS:
7163         next merge from Solar patches (shadow-4.0.0-owl-check_names.diff) but only
7164         part this patch with checking login name matching; checking is login
7165         string isn't longer than possible probably it will be good prepare using
7166         _POSIX_LOGIN_NAME_MAX from <bits/posix1_lim.h>
7167
7168 2001-11-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
7169
7170         * NEWS: typos.
7171
7172         * NEWS: added info about new hu man pages.
7173
7174         * NEWS: updated.
7175
7176 2001-11-16  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
7177
7178         * man/ja/Attic/pw_auth.3, man/ja/Attic/pwauth.8, man/ja/passwd.5, man/ja/porttime.5, man/ja/pwck.8, man/ja/shadow.3, man/ja/shadow.5, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/userdel.8, man/ja/usermod.8, man/ja/Attic/dpasswd.8, man/ja/Attic/mkpasswd.8, man/ja/Makefile.am, man/ja/chage.1, man/ja/chfn.1, man/ja/chpasswd.8, man/ja/chsh.1, man/ja/faillog.5, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/grpck.8, man/ja/lastlog.8, man/ja/login.1, man/ja/login.access.5, man/ja/login.defs.5, man/ja/logoutd.8, man/ja/newgrp.1, man/ja/passwd.1:
7179         - updated to man-pages-ja-20011115.tar.gz
7180
7181         * man/ja/groups.1: 3c26de91cfd359c0b7c36ca3cd3e170d  groups.1
7182
7183         * man/ja/grpconv.8: 402190c04b8df45e20afd01e3acd0da4  grpconv.8
7184
7185         * man/ja/grpunconv.8: 402190c04b8df45e20afd01e3acd0da4  grpunconv.8
7186
7187         * man/ja/id.1: 3edc687b1c09bbdd170553f326a71711  id.1
7188
7189         * man/ja/newusers.8: c2ecaa6ddffe07de2c39be3aefb5bcae  newusers.8
7190
7191         * man/ja/pwunconv.8: 402190c04b8df45e20afd01e3acd0da4  pwunconv.8
7192
7193         * man/ja/Attic/shadowconfig.8:
7194         f79300c0db64fd961443177c88605087  shadowconfig.8
7195
7196         * man/ja/useradd.8: 3333b9a2e5a388a472fb05106d65a596  useradd.8
7197
7198         * man/ja/vigr.8: 42825938683e54e391897ea100001af1  vigr.8
7199
7200         * man/ja/vipw.8: 0cb8db0f1f19de7690f0ef9baeceb919  vipw.8
7201
7202 2001-11-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
7203
7204         * lib/Attic/getpass.c:
7205         one fix warning from Solar shadow-4.0.0-owl-warnings.diff.
7206
7207         * src/chage.c, lib/defines.h:
7208         move "#include <errno.h>" to /lib/defines.h.
7209
7210         * configure.in: added AC_CHECK_HEADERS(errno.h)
7211
7212         * src/chage.c: apply shadow-4.0.0-owl-chage-drop-priv.diff and
7213         shadow-4.0.0-owl-chage-ro-no-lock.diff by Solar Designer <solar@openwall.com>.
7214         Added locks which are needed when doing r/w accesses, not when running as root.
7215         If root does read-only, there's no lock needed. Added missing
7216         "#include <errno.h>" for above.
7217
7218 2001-11-14  Andrzej Krzysztofowicz  <ankry@pld.org.pl>
7219
7220         * configure.in: - added hu directory antry
7221
7222         * man/Makefile.am: - groups.1 moved to EXTRA_DIST
7223         - added hu directory entry
7224
7225         * man/ja/Makefile.am: - sorted
7226         - shadow.3 moved to EXTRA_DIST
7227
7228         * man/pl/Makefile.am: - sorted
7229         - added entries for new pages
7230         - EXTRA_DIST synced with man/Makefile.am
7231
7232         * man/hu/Makefile.am, man/hu/chsh.1, man/hu/gpasswd.1, man/hu/groups.1, man/hu/newgrp.1, man/hu/passwd.1, man/hu/sg.1:
7233         - man pages from Debian
7234
7235         * man/Attic/groupmems.8: - typo
7236
7237         * man/pl/expiry.1, man/pl/groupmems.8: - translated pages
7238
7239 2001-11-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
7240
7241         * libmisc/Makefile.am:
7242         fix building with cracklib enabled: $(LIBCRACK) added to libmisc_la_LIBADD.
7243
7244         * src/useradd.c: typo.
7245
7246 2001-11-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7247
7248         * src/Attic/dpasswd.c, src/gpasswd.c, src/groupadd.c, src/groupmod.c, src/grpck.c, src/lastlog.c, src/login.c, src/passwd.c, src/pwck.c, src/userdel.c, src/usermod.c, src/chage.c, src/chfn.c, src/chsh.c, libmisc/utmp.c:
7249         removed prototypes which are defined in libc header files
7250         (Thorsten Kukuk <kukuk@suse.de>).
7251
7252         * libmisc/Attic/nscd.c, libmisc/Makefile.am, lib/commonio.c:
7253         implemetn better reloading the nscd cache (per NSS map)
7254         by Thorsten Kukuk <kukuk@suse.de>
7255
7256         * src/login.c, libmisc/setupenv.c:
7257         fixed warnings "not used but defined" on compile using gcc 3.0.x
7258         by bulletpr00ph <bullet@users.sourceforge.net>.
7259
7260 2001-10-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
7261
7262         * NEWS: New entries for 4.0.1.
7263
7264         * po/pl.po: few more pl translations.
7265
7266         * po/cs.po, po/el.po, po/fr.po, po/ja.po, po/ko.po, po/pl.po, po/sv.po, po/uk.po:
7267         "make update-po".
7268
7269         * po/ja.po, po/ko.po, configure.in:
7270         added ja, ko translations found in SuSe.
7271
7272 2001-10-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
7273
7274         * src/useradd.c: sort alphabetically *flg variables.
7275
7276         * debian/Attic/Makefile.am, debian/Attic/tar.c: removed.
7277
7278 2001-10-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
7279
7280         * man/ja/Makefile.am, man/ja/sg.1, man/pl/Makefile.am, man/pl/sg.1, man/pl/vigr.8, man/Attic/sg.1, man/Attic/vigr.8, man/Makefile.am:
7281         added vigr(1) man page as roff .so link to vipw(1),                                                                             - added sg(1) man page as roff .so link to newgrp(1).
7282
7283         * src/Makefile.am:
7284         added install symlinks newgrp -> sg, vipw -> vigr in install-exec-hook target.
7285
7286 2001-10-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7287
7288         * lib/Makefile.am (libshadow_la_SOURCES):
7289         reverte last change and added rcsid.h,
7290         (EXTRA_DIST): added missing "\".
7291
7292         * src/Makefile.am: (DEFS):
7293         - fix -DLOCALEDIR in DEFS,
7294         - added -DHAVE_CONFIG_H,
7295         - removed @DEFS@.
7296
7297         * lib/Makefile.am:
7298         added missing shadow_.h file to libshadow_la_SOURCES.
7299
7300 2001-09-08  Tomasz Kłoczko  <kloczek@pld.org.pl>
7301
7302         * Makefile.am (AUTOMAKE_OPTIONS):
7303         version changed to 1.5 and added dist-bzip2.
7304
7305         * lib/Makefile.am, libmisc/Makefile.am, src/Makefile.am:
7306         add .indent.pro to EXTRA_DIST.
7307
7308         * etc/Makefile.am, etc/useradd: add example /etc/defaults/useradd.
7309
7310 2001-09-07  Tomasz Kłoczko  <kloczek@pld.org.pl>
7311
7312         * TODO: last touch.
7313
7314         * TODO: more TODO.
7315
7316         * lib/commonio.c, NEWS:
7317         Fix bug discovered and fixed by Marcel Ritter <Marcel.Ritter@rrze.uni-erlangen.de>
7318         Due to a big buffer size in lib/commonio.c this error does only appear
7319         if a line gets longer than 4096 bytes (there are probably very few people
7320         stumbling across this).
7321         Ths bug can be exposed by trashing /etc/groups file using useradd with script:
7322                 #!/bin/sh
7323                 typeset -i NUM
7324                 NUM=0
7325                 groupadd demogroup
7326                 while [ $NUM -le 1000 ]; do
7327                    useradd -g demogroup -G demogroup -p "NONE" user$NUM
7328                    NUM=$NUM+1
7329                 done
7330
7331 2001-09-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
7332
7333         * src/groups.c, src/id.c, src/newgrp.c, src/useradd.c, src/usermod.c, libmisc/addgrps.c, NEWS:
7334         remove limit 32 to groups per user (the same user can belong to
7335         more than 32 groups) by use sysconf(_SC_NGROUPS_MAX) instead constant
7336         NGROUPS_MAX (patch by Radu Constantin Rendec <radu.rendec@ines.ro>)
7337         NOTE: it probably need testing on other system for add some conditionals
7338         for using sysconf(_SC_NGROUPS_MAX) or NGROUPS_MAX constant.
7339
7340 2001-08-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
7341
7342         * etc/pam.d/Makefile.am, etc/pam.d/useradd: added file for useradd.
7343
7344 2001-08-24  Tomasz Kłoczko  <kloczek@pld.org.pl>
7345
7346         * src/useradd.c (set_defaults):
7347         handle correctly error open/create useradd default config
7348         filei (based on orginal post to bugtraq).
7349
7350         * TODO: documment in pt_BR, ja man pages -s {pw,grp}ck option.
7351
7352         * libmisc/sulog.c, NEWS:
7353         remove limit to 6 chars logged tty name (apply 012_libmisc_sulog.c.diff Debian
7354         patch).
7355
7356         * man/pl/Attic/shadowconfig.8, man/Attic/shadowconfig.8:
7357         - aply 021_man_shadowconfig_usr_doc.diff debian patch.
7358
7359         * src/Makefile.am, lib/Makefile.am:
7360         use $(top_builddir) in .la files paths (for allow correct compile if
7361         $(top_builddir) isn't the same as $(top_srcdir)).
7362
7363         * po/.cvsignore, po/Attic/ChangeLog: removed ChangeLog.
7364
7365 2001-08-18  Michał Moskal  <malekith@pld.org.pl>
7366
7367         * src/grpck.c: - fixed getopt() call, thnx to arekm
7368
7369 2001-08-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
7370
7371         * NEWS: - include last changes to list changes in version 4.0.0.
7372
7373 2001-08-14  Michał Moskal  <malekith@pld.org.pl>
7374
7375         * NEWS: - mention new -s options
7376
7377         * man/pl/grpck.8, man/pl/pwck.8, man/Attic/grpck.8, man/Attic/pwck.8:
7378         - documented new -s options
7379
7380         * src/grpck.c, src/pwck.c: - added -s option to sort output files
7381
7382         * lib/groupio.c, lib/groupio.h, lib/pwio.c, lib/pwio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c, lib/shadowio.h:
7383         - added pw_sort, gr_sort, sgr_sort and spw_sort functions
7384
7385         * lib/commonio.c, lib/commonio.h:
7386         - added commonio_sort{,_wrt} functions
7387
7388 2001-08-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7389
7390         * po/Attic/ChangeLog, po/uk.po, configure.in:
7391         added uk translation (Roman Festchook <roma@polesye.net>).
7392
7393         * src/logoutd.c (mani):
7394         s/ut->ut_libe/ut->ut_user/ on prepare strin with user name for syslog
7395         line (reported by Roman Festchook <roma@polesye.net>).
7396
7397 2001-07-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
7398
7399         * Attic/acconfig.h: - added missing USG.
7400
7401 2001-07-04  Marek Michałkiewicz  <marekm@pld.org.pl>
7402
7403         * lib/commonio.c:
7404         fix buffer overflow (not a security hole) in commonio_setname
7405
7406 2001-06-28  Tomasz Kłoczko  <kloczek@pld.org.pl>
7407
7408         * NEWS: entry about dropping support one argument pam_strerror().
7409
7410         * libmisc/pam_pass.c, src/login.c, src/su.c, Attic/acconfig.h, configure.in, lib/defines.h, lib/pam_defs.h:
7411         drop detecting is pam_strerror() need one or two arguments. Instead using
7412         PAM_STRERROR() macro use directly pam_strerror() function with two arguments.
7413         pam_strerror() with one argument is obsoleted.
7414
7415         * configure.in:
7416         pass display error message if libpam_misc not found in correct argument
7417         AC_CHECK_LIB().
7418
7419         * configure.in:
7420         added checking for libpam_misc if libpam found and if libpam_misc is avalaible
7421         add them to $LIBPAM. Othervise exit fron autoconf script with error message.
7422         Now shadow compiles if pam support is enabled.
7423
7424 2001-06-28  Marek Michałkiewicz  <marekm@pld.org.pl>
7425
7426         * libmisc/copydir.c: fix overwriting existing file (add O_TRUNC)
7427
7428 2001-06-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
7429
7430         * configure.in: remove intl/po2tbl.sed from AC_OUTPUT().
7431
7432         * configure.in:
7433         removed add md5.o md5crypt.o conditionaly to $LIBOBJS (this is obsoleted).
7434         In current version ndling md5 functionality is included conditionaly
7435         inside md5.c and md5crypt.c source files.
7436
7437         * lib/Attic/md5.c: added comments for #endif.
7438
7439         * configure.in: also do not use SU_ACCESS when PAM is used.
7440
7441         * configure.in:
7442         - check pam directly by AC_CHECK_LIB() (PAM from PLD is now fixed an also other
7443           PAM implementation must be fixed for this method checkin is libpam is avalaible;
7444           sorry .. no way this is plain linking procedure bug),
7445         - use AC_DEFINE(LOGIN_ACCES) only when PAM isn't used.
7446
7447 2001-06-23  Marek Michałkiewicz  <marekm@pld.org.pl>
7448
7449         * src/Makefile.am:
7450         add LDADD for groupmod and usermod, as they use PAM too
7451
7452         * src/login.c, src/su.c: fix uninitialized variable failcount
7453         skip '*' in pw_shell for subsystem root
7454
7455 2001-06-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
7456
7457         * src/login.c: use "extern int login_access()" only if !USE_PAM.
7458
7459         * src/Makefile.am:
7460         added LDADD rules for programs which uses PAM and cracklib.
7461
7462 2001-06-23  Marek Michałkiewicz  <marekm@pld.org.pl>
7463
7464         * libmisc/chowntty.c:
7465         allow root login even on read-only root filesystem
7466
7467         * libmisc/Makefile.am: add -DHAVE_CONFIG_H to DEFS
7468
7469 2001-06-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
7470
7471         * autogen.sh: run configure by default with --disable-desrpc,
7472         fix: --with-libpam (not --with-pam).
7473
7474 2001-06-23  Marek Michałkiewicz  <marekm@pld.org.pl>
7475
7476         * libmisc/chowntty.c:
7477         libmisc/chowntty.c (chown_tty): move perror() before syslog() call
7478         which might change errno.
7479
7480         * man/pl/login.defs.5, man/Attic/login.defs.5:
7481         (UMASK): Default value is 077, not 0 - see NEWS for shadow-3.3.2-951106.
7482
7483 2001-06-23  Tomasz Kłoczko  <kloczek@pld.org.pl>
7484
7485         * NEWS, configure.in: prepare for release 4.0.0 version.
7486
7487         * configure.in: remove commented line.
7488
7489 2001-06-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
7490
7491         * po/pl.po: fixed charset (must be iso-8859-2).
7492
7493         * man/Makefile.am, man/ja/.cvsignore, man/ja/Attic/dpasswd.8, man/ja/Attic/mkpasswd.8, man/ja/Attic/pw_auth.3, man/ja/Attic/pwauth.8, man/ja/Makefile.am, man/ja/chage.1, man/ja/chfn.1, man/ja/chpasswd.8, man/ja/chsh.1, man/ja/faillog.5, man/ja/faillog.8, man/ja/gpasswd.1, man/ja/groupadd.8, man/ja/groupdel.8, man/ja/groupmod.8, man/ja/grpck.8, man/ja/lastlog.8, man/ja/login.1, man/ja/login.access.5, man/ja/login.defs.5, man/ja/logoutd.8, man/ja/newgrp.1, man/ja/passwd.1, man/ja/passwd.5, man/ja/porttime.5, man/ja/pwck.8, man/ja/pwconv.8, man/ja/shadow.3, man/ja/shadow.5, man/ja/su.1, man/ja/suauth.5, man/ja/sulogin.8, man/ja/userdel.8, man/ja/usermod.8, configure.in, NEWS:
7494         added ja man pages.
7495
7496 2001-05-30  Tomasz Kłoczko  <kloczek@pld.org.pl>
7497
7498         * src/Attic/shadowconfig.sh, src/Makefile.am, debian/Attic/Makefile.am, debian/Attic/shadowconfig.sh:
7499         move shadowconfig.sh to debian/
7500
7501         * src/Makefile.am: added missing -I${top_srcdir} to INCLUDES.
7502
7503         * lib/Makefile.am: empty DEFS and INCLUDES="-I$(top_srcdir)".
7504
7505         * libmisc/Makefile.am:
7506         empty DEFS and INCLUDES="-I$(top_srcdir) -I$(top_srcdir)/lib".
7507
7508 2001-03-05  Tomasz Kłoczko  <kloczek@pld.org.pl>
7509
7510         * src/.indent.pro, lib/.indent.pro, libmisc/.indent.pro:
7511         directory indent config file is -kr -i8 -bad (indent open this file and
7512         read options if options not specyfied in commnad line).
7513
7514         * autogen.sh (conf_flags): added --with-pam.
7515
7516         * NEWS: start complette next release information.
7517
7518 2001-02-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
7519
7520         * shlib/Attic/Makefile.am, shlib/Attic/Makefile.in.saved: - removed.
7521
7522         * src/Makefile.am, libmisc/Makefile.am, lib/Makefile.am:
7523         Rewrited automake suit for building lib, libmisc and src (now this look much
7524         better). Also for all is now used libtool in proper way.
7525
7526         * configure.in:
7527         - added useing AM_DISABLE_SHARED, AM_ENABLE_STATIC for disable compile shared
7528           libraries and enable static,
7529         - some cosmetics.
7530
7531         * Makefile.am (SUBDIRS): reorder libmisc must be before lib.
7532
7533 2001-02-01  Tomasz Kłoczko  <kloczek@pld.org.pl>
7534
7535         * man/pt_BR/Makefile.am: - added man_MANS to EXTRA_DIST.
7536
7537 2001-01-31  Tomasz Kłoczko  <kloczek@pld.org.pl>
7538
7539         * man/Makefile.am, man/pt_BR/Makefile.am, man/pt_BR/gpasswd.1, man/pt_BR/groupadd.8, man/pt_BR/groupdel.8, man/pt_BR/groupmod.8, man/pt_BR/shadow.5, configure.in:
7540         include pt_BR man pages for gpasswd(1), groupadd(1), groupdel(8),
7541         groupmod(8), shadow(5).
7542
7543 2001-01-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
7544
7545         * TODO: - updated.
7546
7547         * man/pl/Attic/dpasswd.8, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/gpasswd.1, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/login.1, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/su.1, man/pl/useradd.8, man/pl/userdel.8, man/pl/vipw.8, man/Attic/dpasswd.8, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/su.1, man/Attic/useradd.8, man/Attic/usermod.8, man/Attic/vipw.8:
7548         many small cleanups, fixes also removed commented obsoleted texts.
7549
7550 2001-01-25  Tomasz Kłoczko  <kloczek@pld.org.pl>
7551
7552         * autogen.sh: add to conf_flags --disable-shared.
7553
7554         * man/pl/Attic/d_passwd.5, man/pl/Attic/dialups.5, man/pl/Attic/dpasswd.8, man/pl/Attic/mkpasswd.8, man/pl/Attic/pw_auth.3, man/pl/Attic/pwauth.8, man/pl/Attic/shadowconfig.8, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/gpasswd.1, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/limits.5, man/pl/login.1, man/pl/login.access.5, man/pl/login.defs.5, man/pl/logoutd.8, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/passwd.5, man/pl/porttime.5, man/pl/pwck.8, man/pl/pwconv.8, man/pl/shadow.3, man/pl/shadow.5, man/pl/su.1, man/pl/suauth.5, man/pl/sulogin.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, man/pl/vipw.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/shadowconfig.8, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/vipw.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/expiry.1, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmems.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/limits.5, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8:
7555         put or move to top cemmented Id cvs keyword,
7556         (passwd.1): documment -e option (patch from Debian),
7557         (userdel.1): remove commented obsoleted options.
7558
7559         * man/Makefile.am:
7560         put all files in man_MANS and EXTRA_DIST in alphabethic order.
7561
7562         * src/chpasswd.c, src/pwunconv.c:
7563         remove from comments program description and history logs.
7564
7565         * src/Makefile.am: move groups to bin_PROGRAMS.
7566
7567 2000-12-19  Tomasz Kłoczko  <kloczek@pld.org.pl>
7568
7569         * src/su.c: Based on Debian modyfications:
7570         (main): #endif /* USE_PAM */ #ifdef USE_PAM replaced by #else,
7571         (main): removed some dead code (scoped by #if 0 .. #endif).
7572         (main): call to re-establish SIGINT to right place.
7573
7574         * man/pl/passwd.1: Removed SEE ALSO to shadow(3) and passwd(3).
7575
7576         * man/pl/shadow.5, man/Attic/shadow.5: Removed SEE ALSO to shadow(3).
7577
7578         * man/Attic/passwd.1:
7579         Removed SEE ALSO to passwd(3) and commented shadow(3).
7580
7581 2000-12-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7582
7583         * src/useradd.c (main):
7584         use "useradd" instead "shadow in pam_start() parameters - this
7585         allow use separated pam config file for useradd (for example for allow
7586         specified non-root user for add user).
7587
7588 2000-11-29  Tomasz Kłoczko  <kloczek@pld.org.pl>
7589
7590         * TODO: remove write expiry(1) man page.
7591
7592         * man/Attic/expiry.1, man/Makefile.am:
7593         added expiry(1) man page from Debian.
7594
7595         * man/pl/lastlog.8, man/Attic/lastlog.8:
7596         updated man pages for whole dispaly syntax.
7597
7598         * src/lastlog.c (main): fixed command line syntax description.
7599
7600         * src/lastlog.c (main):
7601         display correctly and full current commnad line lastlog syntax
7602         and also output this string using gettext.
7603
7604         * src/lastlog.c (main):
7605         merge src_lastlogin.c patch from debian with use getopt_long()
7606         instead getopt() for add handling --help, --user, --time switches and
7607         dipslay useage message on -h, --help and as default action.
7608
7609 2000-11-17  Tomasz Kłoczko  <kloczek@pld.org.pl>
7610
7611         * src/groupmems.c, po/el.po, po/fr.po, po/pl.po, po/sv.po, po/POTFILES.in, po/cs.po:
7612         added i18n support for src/groupmems.c.
7613
7614         * src/useradd.c:
7615         * (set_defaults): use mkstemp() if avalaible. Othereise use mktemp().
7616
7617         * configure.in: * added checking for mkstemp().
7618
7619         * src/useradd.c: * (set_defaults): use mkstemp() instead mktemp(),
7620         * (mani): fix compilation error in previouse RH patch (removed using nflg).
7621
7622 2000-11-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
7623
7624         * TODO: - groupmems need some work on add PAM and i18n support.
7625
7626         * src/groupmems.c, man/Attic/groupmems.8:
7627         Added raw version groupmems program for administer members of a user's
7628         primary group. groupmems was written by George Kraft IV <gk4@us.ibm.com>
7629         and this tool have BSD license.
7630
7631         * src/Attic/patchlevel.h, src/Makefile.am:
7632         patchlevel.h, Makefile.am: removed patchlevel.h file,
7633         Makefile.am: removed bindir, sbindir (this comes with autoconf).
7634
7635 2000-11-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7636
7637         * TODO: - write expire man page.
7638
7639 2000-10-16  Tomasz Kłoczko  <kloczek@pld.org.pl>
7640
7641         * old/Attic/pwconv-old.8, old/Attic/pwconv.8, old/Attic/pwunconv-old.8, old/Attic/pwunconv.8, man/pl/Attic/mkpasswd.8, man/pl/Attic/pw_auth.3, man/pl/Attic/pwauth.8, man/pl/login.defs.5, man/pl/logoutd.8, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/porttime.5, man/pl/pwck.8, man/pl/shadow.3, man/pl/su.1, man/pl/sulogin.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, man/pl/Attic/dpasswd.8, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/login.1, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, debian/Attic/login.copyright, debian/Attic/passwd.copyright, debian/Attic/secure-su.copyright, doc/Attic/ANNOUNCE, doc/Attic/LSM, doc/Attic/README, doc/Attic/README.linux:
7642         Julianne F. Haugh new contact adress.
7643
7644         * NEWS: - summary chanfes for 20001016.
7645
7646         * doc/Attic/README.shadow-paper, doc/Makefile.am:
7647         - removed outdated README.shadow-paper.
7648
7649         * configure.in: - release 20001016.
7650
7651 2000-10-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
7652
7653         * man/pl/Makefile.am, man/Makefile.am: fixes in man/{,po}/Makefile.am:
7654         - $(man_MANS) added to EXTRA_DISTS,
7655         - do not install by default groups.1, id.1, pw_auth.3, shadow.3, pwauth.8,
7656           sulogin.8, dpasswd.8 (moved to EXTRA_DISTS),
7657
7658 2000-10-15  Marek Michałkiewicz  <marekm@pld.org.pl>
7659
7660         * lib/commonio.c (reload_nscd): Disable for now because not every
7661         version of nscd can handle it, unless ENABLE_NSCD_SIGHUP defined.
7662
7663 2000-10-15  Tomasz Kłoczko  <kloczek@pld.org.pl>
7664
7665         * libmisc/pwdcheck.c, libmisc/Makefile.am: - added missing pwdcheck.c.
7666
7667         * configure.in: - removed old/Makefile from AC_OUTPUT list.
7668
7669 2000-10-12  Tomasz Kłoczko  <kloczek@pld.org.pl>
7670
7671         * README: - fixed information about RO cvs access.
7672
7673         * NEWS: - summary changes description for shadow-20001012.
7674
7675         * configure.in: - release changed to 20001012.
7676
7677         * etc/Makefile.am: - removed shells and suauth from EXTRA_DIST.
7678
7679         * doc/Makefile.am: - removed README.debian from EXTRA_DIST.
7680
7681         * libmisc/Makefile.am: - removed pwdcheck.c from libmisc_a_SOURCES.
7682
7683         * debian/Attic/Makefile.am: - removed FILES from EXTRA_DIST.
7684
7685         * contrib/Makefile.am: - s/udbachk.v012.tgz/udbachk.tgz/
7686
7687         * doc/Makefile.am: - removed CHANGES (this file was moved to ../NEWS).
7688
7689 2000-10-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
7690
7691         * po/Attic/ChangeLog: - add empty file (gettext requires this).
7692
7693 2000-10-10  Arkadiusz Miśkiewicz  <misiek@pld.org.pl>
7694
7695         * README: typos fixed
7696
7697 2000-10-10  Tomasz Kłoczko  <kloczek@pld.org.pl>
7698
7699         * Makefile.am: - added shadow-utils.spec.in to EXTR_DIST.
7700
7701         * redhat/Attic/shadow-utils.spec.in: - obsoleted.
7702
7703         * Attic/stamp-h.in: - removed (this file is autogenerated by autoconf).
7704
7705         * po/pl.po, po/sv.po, po/cs.po, po/el.po, po/fr.po:
7706         - update before release.
7707
7708         * doc/Attic/LSM: - new maintainer and new primary site.
7709
7710         * Makefile.am: - README added to EXTRA_DIST.
7711
7712         * README: - added README with all shadow sites and resources details.
7713
7714         * Attic/shadow-utils.spec.in: - partialy rewrited.
7715
7716         * configure.in: - change version to 20001010.
7717
7718         * Makefile.am: - added NEWS to EXTRA_DIST.
7719
7720         * Makefile.am, TODO: - added TODO.
7721
7722         * doc/Attic/CHANGES, NEWS: - rename doc/CHANGES -> NEWS.
7723
7724 2000-10-09  Tomasz Kłoczko  <kloczek@pld.org.pl>
7725
7726         * redhat/Attic/Makefile.am, redhat/Attic/README, redhat/Attic/shadow-970616-fix.patch, redhat/Attic/shadow-970616-glibc.patch, redhat/Attic/shadow-970616-rh.patch, redhat/Attic/shadow-970616-utuser.patch, redhat/Attic/shadow-970616.login.defs, redhat/Attic/shadow-970616.useradd, redhat/Attic/shadow-utils-970616.spec, Attic/shadow-utils.spec.in, Makefile.am, configure.in:
7727         - remove redhat/ directory with obsoleted files.
7728
7729         * po/.cvsignore, src/.cvsignore, man/.cvsignore, man/pl/.cvsignore, .cvsignore, libmisc/.cvsignore:
7730         - shut up cvs.
7731
7732         * man/Makefile.am: - removed redundant ${man_MANS} from EXTRA_DIST.
7733
7734         * src/useradd.c:
7735         - fix a security bug (adduser could overwrite previously existing
7736           groups (shadow-19990827-group.patch from RH),
7737
7738         * po/cs.po, po/el.po, po/fr.po, po/pl.po, po/sv.po:
7739         - "make updated-po".
7740
7741         * man/pl/Makefile.am, man/pl/grpconv.8, man/pl/grpunconv.8, man/pl/pwunconv.8, man/Attic/grpconv.8, man/Attic/grpunconv.8, man/Attic/pwunconv.8, man/Makefile.am:
7742         - added man pages for grpconv(8), grpunconv(8), pwunconv(8) (.so link to
7743           pwconv(8))
7744
7745         * man/pl/Attic/adduser.8, man/pl/Makefile.am, man/Attic/adduser.8, man/Makefile.am:
7746         - added man page for adduser(8) (.so link to useradd(8)).
7747
7748         * po/Attic/doit:
7749         - removed (in po/Makefile.in.in exist special update-po target).
7750
7751         * etc/pam.d/passwd, etc/pam.d/su: - cosmetics.
7752
7753         * etc/pam.d/Attic/shadow: - sample PAM config file for shadow utils.
7754
7755         * etc/pam.d/Makefile.am: - added shadow to EXTRA_DIST
7756
7757         * src/chpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/newusers.c, src/useradd.c, src/userdel.c, src/usermod.c:
7758         - bind to shadow PAM file instead userdb (mainly PAMimication all shadow
7759           utils is used for proper updating db files but in real this can be used
7760           for perform many other tasks).
7761
7762         * src/Makefile.am: - added linking with @LIBPAM@ all PAMified tools.
7763
7764         * src/chpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/newusers.c, src/useradd.c, src/userdel.c, src/usermod.c:
7765         - added PAM support (bind to common "userdb" PAM authentication description
7766           file).
7767
7768         * src/chage.c: - added PAM support.
7769
7770 2000-10-06  Tomasz Kłoczko  <kloczek@pld.org.pl>
7771
7772         * autogen.sh:
7773         - added autogen.sh script which prepare raw source code from cvs to use.
7774
7775 2000-10-04  Tomasz Kłoczko  <kloczek@pld.org.pl>
7776
7777         * man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, man/pl/vipw.8:
7778         - merged changes from PTM.
7779
7780         * man/pl/Makefile.am:
7781         - simplified: use only man_MANS and remaped $(mandir) variable.
7782
7783 2000-09-27  Tomasz Kłoczko  <kloczek@pld.org.pl>
7784
7785         * po/cs.po, configure.in:
7786         - added cs translation (Jiri Pavlovsky <Jiri.Pavlovsky@ff.cuni.cz>).
7787
7788 2000-09-05  Marek Michałkiewicz  <marekm@pld.org.pl>
7789
7790         * man/pl/sulogin.8, man/pl/vipw.8, po/el.po, po/fr.po, po/pl.po, po/sv.po, man/pl/Attic/d_passwd.5, man/pl/Attic/dialups.5, man/pl/Attic/dpasswd.8, man/pl/Attic/mkpasswd.8, man/pl/Attic/pw_auth.3, man/pl/Attic/pwauth.8, man/pl/Attic/shadowconfig.8, man/pl/chage.1, man/pl/chfn.1, man/pl/chpasswd.8, man/pl/chsh.1, man/pl/faillog.5, man/pl/faillog.8, man/pl/gpasswd.1, man/pl/groups.1, man/pl/grpck.8, man/pl/id.1, man/pl/lastlog.8, man/pl/limits.5, man/pl/login.1, man/pl/login.access.5, man/pl/login.defs.5, man/pl/logoutd.8, man/pl/newgrp.1, man/pl/newusers.8, man/pl/passwd.1, man/pl/passwd.5, man/pl/porttime.5, man/pl/pwck.8, man/pl/pwconv.8, man/pl/shadow.3, man/pl/shadow.5, man/pl/su.1, man/pl/suauth.5:
7791         *** empty log message ***
7792
7793 2000-09-02  Marek Michałkiewicz  <marekm@pld.org.pl>
7794
7795         * src/groupmod.c, src/grpck.c, src/login.c, src/logoutd.c, src/newgrp.c, src/passwd.c, src/pwck.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, lib/commonio.h, lib/defines.h, lib/groupio.c, lib/pwio.c, lib/sgroupio.c, lib/shadowio.c, man/Attic/usermod.8, po/el.po, po/fr.po, po/pl.po, po/sv.po, redhat/Attic/shadow-utils.spec.in, src/Attic/dpasswd.c, src/chage.c, src/chfn.c, src/chsh.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, configure.in, debian/Attic/rules, doc/Attic/CHANGES, doc/Attic/LSM, lib/commonio.c:
7796         *** empty log message ***
7797
7798 2000-08-26  Marek Michałkiewicz  <marekm@pld.org.pl>
7799
7800         * contrib/Makefile.am, contrib/groupmems.shar, doc/Attic/LSM, po/el.po, po/fr.po, po/pl.po, po/sv.po, doc/Attic/README.mirrors, src/vipw.c, src/Attic/dpasswd.c, src/Attic/mkpasswd.c, src/Makefile.am, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, lib/Attic/dialchk.h, lib/Attic/dialup.h, lib/Attic/rad64.c, lib/Attic/tcfsio.h, lib/Makefile.am, lib/commonio.c, lib/commonio.h, lib/defines.h, lib/encrypt.c, lib/getdef.c, lib/getdef.h, lib/groupio.c, lib/groupio.h, lib/prototypes.h, lib/pwauth.c, lib/pwio.c, lib/pwio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.h, libmisc/Attic/suauth.c, libmisc/chkname.h, libmisc/chowndir.c, libmisc/copydir.c, libmisc/entry.c, libmisc/failure.h, libmisc/getdate.h, libmisc/hushed.c, libmisc/loginprompt.c, libmisc/setupenv.c, libmisc/sulog.c, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Makefile.am, man/pl/Makefile.am, man/pl/groupadd.8, man/pl/groupdel.8, man/pl/groupmod.8, man/pl/useradd.8, man/pl/userdel.8, man/pl/usermod.8, etc/Attic/login.defs.hurd, etc/Attic/login.defs.linux, doc/Attic/ANNOUNCE, doc/Attic/CHANGES, doc/Attic/README, doc/Attic/README.linux, doc/Attic/README.pam, doc/WISHLIST, debian/Attic/login.copyright, debian/Attic/passwd.copyright, debian/Attic/secure-su.copyright, Attic/mkinstalldirs, configure.in, Makefile.am:
7801         *** empty log message ***
7802
7803 1999-08-27  Marek Michałkiewicz  <marekm@pld.org.pl>
7804
7805         * doc/Attic/LSM, po/el.po, po/fr.po, po/pl.po, po/sv.po, debian/Attic/passwd.postinst, lib/Attic/dialchk.c, lib/Attic/getpass.c, lib/getdef.c, lib/pwauth.c, libmisc/limits.c, libmisc/rlogin.c, man/Attic/limits.5, man/Attic/newgrp.1, src/Attic/dpasswd.c, src/chage.c, src/gpasswd.c, src/login.c, src/logoutd.c, src/newgrp.c, src/passwd.c, src/sulogin.c, Attic/acconfig.h, configure.in, debian/Attic/Makefile.am, debian/Attic/changelog, debian/Attic/control.gnu, debian/Attic/control.linux, debian/Attic/login.postrm, debian/Attic/logoutd, debian/Attic/logoutd.init, debian/Attic/passwd.conffiles, debian/Attic/passwd.cron, debian/Attic/passwd.init, debian/Attic/passwd.postrm, debian/Attic/rules, doc/Attic/CHANGES, doc/Attic/README.mirrors, doc/WISHLIST, etc/Attic/login.defs.hurd, etc/Attic/login.defs.linux, etc/Makefile.am, lib/defines.h:
7806         *** empty log message ***
7807
7808 1999-07-09  Marek Michałkiewicz  <marekm@pld.org.pl>
7809
7810         * configure.in, contrib/Makefile.am, debian/Attic/changelog, doc/Attic/CHANGES, doc/Attic/LSM, doc/WISHLIST, lib/Attic/strcasecmp.c, lib/prototypes.h, libmisc/Makefile.am, man/Attic/faillog.8, po/el.po, po/pl.po, src/Makefile.am, src/chfn.c, src/chsh.c, src/faillog.c, src/groupmod.c, src/grpconv.c, src/grpunconv.c, src/newgrp.c, src/passwd.c, src/vipw.c:
7811         *** empty log message ***
7812
7813 1999-06-07  Marek Michałkiewicz  <marekm@pld.org.pl>
7814
7815         * redhat/Attic/shadow-utils.spec.in, src/Attic/dpasswd.c, src/Attic/mkpasswd.c, src/Makefile.am, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/logoutd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/usermod.c, contrib/Makefile.am, contrib/README, contrib/udbachk.tgz, debian/Attic/changelog, debian/Attic/rules, doc/Attic/CHANGES, doc/Attic/LSM, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/README.platforms, doc/WISHLIST, lib/Attic/getpass.c, lib/Attic/rcsid.h, lib/Makefile.am, lib/fputsx.c, lib/pam_defs.h, lib/prototypes.h, libmisc/Attic/login_desrpc.c, libmisc/pam_pass.c, libmisc/utmp.c, man/Attic/login.1, po/el.po, po/pl.po, Attic/acconfig.h, configure.in:
7816         *** empty log message ***
7817
7818 1999-03-07  Marek Michałkiewicz  <marekm@pld.org.pl>
7819
7820         * po/pl.po, po/el.po, doc/Attic/LSM, src/useradd.c, src/su.c, src/pwconv.c, src/pwck.c, src/passwd.c, src/newusers.c, src/newgrp.c, src/logoutd.c, src/login.c, src/grpconv.c, src/grpck.c, src/groupadd.c, src/gpasswd.c, src/Attic/dpasswd.c, src/chfn.c, src/chage.c, man/Attic/usermod.8, man/Attic/useradd.8, man/Attic/limits.5, man/Attic/chage.1, libmisc/valid.c, libmisc/sub.c, libmisc/strtoday.c, libmisc/setupenv.c, libmisc/obscure.c, libmisc/limits.c, libmisc/env.c, lib/Attic/snprintf.h, lib/getdef.c, lib/encrypt.c, lib/defines.h, etc/Attic/login.defs.linux, doc/WISHLIST, doc/Attic/README.nls, doc/Attic/README.pam, doc/README.platforms, doc/Attic/README.mirrors, doc/Attic/README.linux, doc/Makefile.am, doc/Attic/CHANGES, debian/Attic/tar.c, debian/Attic/rules, debian/Attic/logoutd, debian/Attic/control, debian/Attic/changelog, configure.in:
7821         *** empty log message ***
7822
7823 1998-12-28  Marek Michałkiewicz  <marekm@pld.org.pl>
7824
7825         * src/usermod.c, src/userdel.c, src/useradd.c, src/sulogin.c, src/su.c, src/pwunconv.c, src/pwconv.c, src/pwck.c, src/passwd.c, src/newusers.c, src/newgrp.c, src/Attic/mkpasswd.c, src/logoutd.c, src/login.c, src/lastlog.c, src/id.c, src/grpunconv.c, src/grpconv.c, src/grpck.c, src/groups.c, src/groupmod.c, src/groupdel.c, src/groupadd.c, src/gpasswd.c, src/faillog.c, src/expiry.c, src/Attic/dpasswd.c, src/chsh.c, src/chpasswd.c, src/chfn.c, src/chage.c, po/Attic/doit, po/POTFILES.in, po/el.po, src/Makefile.am, man/Attic/usermod.8, man/Attic/userdel.8, man/Attic/useradd.8, man/Attic/sulogin.8, man/Attic/su.1, man/Attic/shadow.5, man/Attic/shadow.3, man/Attic/pwck.8, man/Attic/pwauth.8, man/Attic/pw_auth.3, man/Attic/porttime.5, man/Attic/passwd.5, man/Attic/passwd.1, man/Attic/newusers.8, man/Attic/newgrp.1, man/Attic/mkpasswd.8, man/Attic/logoutd.8, man/Attic/login.defs.5, man/Attic/login.1, man/Attic/lastlog.8, man/Attic/id.1, man/Attic/grpck.8, man/Attic/groups.1, man/Attic/groupmod.8, man/Attic/groupdel.8, man/Attic/groupadd.8, man/Attic/faillog.8, man/Attic/faillog.5, man/Attic/dpasswd.8, man/Attic/chsh.1, man/Attic/chpasswd.8, man/Attic/chfn.1, man/Attic/chage.1, libmisc/xmalloc.c, libmisc/sub.c, libmisc/Attic/suauth.c, libmisc/shell.c, libmisc/setupenv.c, libmisc/pam_pass.c, libmisc/obscure.c, libmisc/mail.c, libmisc/Attic/login_desrpc.c, libmisc/limits.c, libmisc/failure.c, libmisc/env.c, libmisc/console.c, libmisc/chowntty.c, libmisc/age.c, libmisc/addgrps.c, libmisc/Makefile.am, lib/Attic/strerror.c, lib/pwauth.c, lib/prototypes.h, lib/Attic/getpass.c, lib/getdef.c, lib/Attic/dialchk.c, lib/defines.h, lib/Makefile.am, doc/WISHLIST, doc/README.platforms, doc/Attic/README.mirrors, doc/Attic/README.linux, doc/Attic/README, doc/Attic/LSM, doc/Attic/CHANGES, debian/Attic/secure-su.copyright, debian/Attic/passwd.copyright, debian/Attic/login.copyright, debian/Attic/control, debian/Attic/changelog, configure.in, Attic/acconfig.h, Makefile.am:
7826         *** empty log message ***
7827
7828 1998-07-24  Marek Michałkiewicz  <marekm@pld.org.pl>
7829
7830         * src/passwd.c, src/su.c, src/userdel.c, src/Makefile.am, src/chage.c, src/faillog.c, src/login.c, lib/Attic/tcfsio.c, lib/Attic/tcfsio.h, lib/pwauth.c, libmisc/chowntty.c, libmisc/pam_pass.c, libmisc/setugid.c, etc/pam.d/passwd, etc/pam.d/su, lib/Makefile.am, lib/commonio.c, lib/defines.h, lib/prototypes.h, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/Makefile.am, doc/README.platforms, doc/WISHLIST, etc/Makefile.am, etc/pam.d/Makefile.am, doc/Attic/CHANGES, debian/Attic/changelog, configure.in, Attic/acconfig.h:
7831         *** empty log message ***
7832
7833 1998-06-26  Marek Michałkiewicz  <marekm@pld.org.pl>
7834
7835         * src/passwd.c, src/usermod.c, man/Attic/faillog.8, man/Attic/pwconv.8, src/logoutd.c, lib/Attic/getpass.c, libmisc/copydir.c, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/WISHLIST, lib/commonio.c, debian/Attic/changelog, doc/Attic/CHANGES, configure.in:
7836         *** empty log message ***
7837
7838 1998-05-29  Marek Michałkiewicz  <marekm@pld.org.pl>
7839
7840         * man/Attic/lastlog.8, man/Attic/login.1, src/usermod.c, doc/Attic/CHANGES, doc/Attic/README.linux, etc/Attic/login.defs.linux, lib/defines.h, debian/Attic/changelog, debian/Attic/login.copyright, debian/Attic/login.postinst, debian/Attic/passwd.copyright, debian/Attic/rules, debian/Attic/secure-su.copyright, configure.in, contrib/Makefile.am, contrib/shadow-anonftp.patch:
7841         *** empty log message ***
7842
7843 1998-04-16  Marek Michałkiewicz  <marekm@pld.org.pl>
7844
7845         * src/useradd.c, src/userdel.c, src/usermod.c, src/passwd.c, src/sulogin.c, src/groupdel.c, src/login.c, src/logoutd.c, src/newgrp.c, src/Attic/dpasswd.c, src/chage.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, redhat/Attic/shadow-970616-rh.patch, redhat/Attic/shadow-970616-utuser.patch, redhat/Attic/shadow-970616.login.defs, redhat/Attic/shadow-970616.useradd, redhat/Attic/shadow-utils-970616.spec, src/Makefile.am, libmisc/utmp.c, redhat/Attic/Makefile.am, redhat/Attic/README, redhat/Attic/shadow-970616-fix.patch, redhat/Attic/shadow-970616-glibc.patch, libmisc/Attic/login_desrpc.c, libmisc/limits.c, libmisc/log.c, libmisc/loginprompt.c, libmisc/obscure.c, libmisc/strtoday.c, libmisc/chkname.c, libmisc/chowndir.c, libmisc/copydir.c, libmisc/failure.c, lib/Attic/dialchk.c, lib/Attic/pwpack.c, lib/defines.h, lib/pwauth.c, doc/Attic/CHANGES, doc/Attic/README.linux, doc/WISHLIST, doc/cracklib26.diff, lib/commonio.c, Attic/acconfig.h, configure.in, debian/Attic/tar.c:
7846         *** empty log message ***
7847
7848 1998-04-02  Marek Michałkiewicz  <marekm@pld.org.pl>
7849
7850         * src/groupmod.c, libmisc/sulog.c, lib/sgetspent.c, lib/sgetpwent.c, lib/sgetgrent.c, lib/Attic/putgrent.c, lib/gshadow.c, lib/getdef.c, lib/fputsx.c, lib/commonio.c, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/Attic/CHANGES, configure.in:
7851         *** empty log message ***
7852
7853 1998-01-30  Marek Michałkiewicz  <marekm@pld.org.pl>
7854
7855         * Attic/install-sh, src/userdel.c, src/usermod.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/useradd.c, src/newgrp.c, src/newusers.c, src/passwd.c, src/pwck.c, src/groupmod.c, src/login.c, src/logoutd.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/expiry.c, redhat/Attic/README, redhat/Attic/shadow-utils.spec.in, src/Makefile.am, src/chage.c, man/Attic/login.defs.5, man/Attic/useradd.8, man/Attic/usermod.8, redhat/Attic/Makefile.am, libmisc/pam_pass.c, libmisc/strtoday.c, libmisc/tz.c, libmisc/Attic/login_access.c, libmisc/Attic/login_desrpc.c, libmisc/Attic/login_krb.c, libmisc/obscure.c, libmisc/age.c, libmisc/env.c, libmisc/limits.c, lib/Attic/strstr.c, lib/shadow.c, lib/shadowio.c, lib/shadowio.h, lib/utent.c, lib/Attic/rmdir.c, lib/pwio.c, lib/pwio.h, lib/sgetspent.c, lib/sgroupio.c, lib/Attic/mkdir.c, lib/Attic/putgrent.c, lib/prototypes.h, lib/pwauth.c, lib/Attic/md5crypt.c, lib/Attic/getpass.c, lib/groupio.c, lib/gshadow.c, lib/lockpw.c, lib/commonio.h, lib/defines.h, lib/encrypt.c, lib/getdef.c, lib/getdef.h, doc/Attic/README.mirrors, doc/Attic/automake-1.0.diff, doc/WISHLIST, lib/Makefile.am, lib/commonio.c, doc/Attic/ANNOUNCE, doc/Attic/CHANGES, doc/Attic/README.linux, doc/Makefile.am, doc/README.limits, debian/Attic/Makefile.am, debian/Attic/changelog, debian/Attic/login.copyright, debian/Attic/rules, Attic/mkinstalldirs, Attic/shadow-utils.spec, contrib/README, Attic/acconfig.h, Attic/aclocal.m4, configure.in, Makefile.am:
7856         *** empty log message ***
7857
7858 1998-01-25  Marek Michałkiewicz  <marekm@pld.org.pl>
7859
7860         * Attic/acconfig.h: *** empty log message ***
7861
7862 1997-12-14  Marek Michałkiewicz  <marekm@pld.org.pl>
7863
7864         * doc/Attic/CHANGES, debian/Attic/checksums, debian/Attic/rules, debian/Attic/Makefile.am, src/Makefile.am, src/userdel.c, src/usermod.c, src/pwck.c, src/useradd.c, src/Attic/mkpasswd.c, src/gpasswd.c, src/grpck.c, src/login.c, src/chage.c, src/chfn.c, src/chsh.c, man/Attic/shadowconfig.8, man/Attic/vipw.8, old/Attic/Makefile.am, old/Attic/pwunconv.8, man/Attic/login.defs.5, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Makefile.am, libmisc/limits.c, libmisc/rlogin.c, lib/Attic/pwdbm.c, lib/Attic/pwent.c, lib/prototypes.h, lib/shadow.c, doc/Attic/LSM, doc/WISHLIST, etc/limits, lib/Attic/grent.c, Attic/shadow-utils.spec, debian/Attic/changelog, configure.in:
7865         *** empty log message ***
7866
7867 1997-12-08  Marek Michałkiewicz  <marekm@pld.org.pl>
7868
7869         * src/userdel.c, src/usermod.c, src/Attic/shadowconfig.sh, src/su.c, src/sulogin.c, src/useradd.c, src/passwd.c, src/pwck.c, src/pwconv.c, src/pwunconv.c, src/newgrp.c, src/newusers.c, src/Attic/mkpasswd.c, src/logoutd.c, src/grpconv.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/grpck.c, src/Attic/dpasswd.c, src/chsh.c, src/expiry.c, src/faillog.c, src/gpasswd.c, src/Makefile.am, src/chage.c, src/chfn.c, src/chpasswd.c, old/Attic/Makefile.am, old/Attic/pwconv.8, old/Attic/vipw.8, man/Attic/limits.5, man/Attic/pwconv.8, man/Attic/shadowconfig.8, man/Attic/vipw.8, man/Makefile.am, libmisc/tz.c, libmisc/ulimit.c, libmisc/utmp.c, libmisc/valid.c, libmisc/xmalloc.c, libmisc/Attic/suauth.c, libmisc/strtoday.c, libmisc/sub.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/Attic/setup.c, libmisc/salt.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/rlogin.c, libmisc/motd.c, libmisc/myname.c, libmisc/obscure.c, libmisc/pam_pass.c, libmisc/pwd2spwd.c, libmisc/pwd_init.c, libmisc/Attic/login_access.c, libmisc/Attic/login_desrpc.c, libmisc/Attic/login_krb.c, libmisc/loginprompt.c, libmisc/mail.c, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/list.c, libmisc/log.c, libmisc/Attic/getdate.c, libmisc/failure.h, libmisc/fields.c, libmisc/getdate.h, libmisc/getdate.y, libmisc/entry.c, libmisc/env.c, libmisc/failure.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, libmisc/copydir.c, libmisc/Attic/chkshell.c, libmisc/age.c, libmisc/basename.c, libmisc/chkname.c, libmisc/chkname.h, lib/Attic/strdup.c, lib/Attic/strerror.c, lib/Attic/strstr.c, lib/utent.c, libmisc/Makefile.am, libmisc/addgrps.c, lib/Attic/spdbm.c, lib/Attic/sppack.c, lib/sgroupio.c, lib/shadow.c, lib/shadowio.c, lib/Attic/rename.c, lib/Attic/rmdir.c, lib/sgetgrent.c, lib/sgetpwent.c, lib/sgetspent.c, lib/Attic/rad64.c, lib/Attic/pwdbm.c, lib/Attic/pwent.c, lib/Attic/pwpack.c, lib/pwauth.c, lib/pwio.c, lib/Attic/mkdir.c, lib/Attic/putgrent.c, lib/Attic/putpwent.c, lib/Attic/putspent.c, lib/port.c, lib/prototypes.h, lib/Attic/gsdbm.c, lib/Attic/gspack.c, lib/Attic/md5.c, lib/Attic/md5crypt.c, lib/gshadow.c, lib/lockpw.c, lib/Attic/grdbm.c, lib/Attic/grent.c, lib/Attic/grpack.c, lib/groupio.c, lib/Attic/getpass.c, lib/Attic/dialup.c, lib/encrypt.c, lib/fputsx.c, lib/getdef.c, lib/Attic/dialchk.c, lib/Attic/dialchk.h, lib/commonio.c, lib/commonio.h, lib/defines.h, doc/Attic/automake-1.0.diff, etc/Attic/login.defs.linux, etc/limits, lib/Makefile.am, doc/Attic/CHANGES, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/WISHLIST, debian/Attic/login.conffiles, debian/Attic/login.postinst, debian/Attic/passwd.postinst, debian/Attic/porttime, debian/Attic/rules, debian/Attic/secure-su.README, debian/Attic/securetty, contrib/pwdauth.c, debian/Attic/changelog, debian/Attic/control, Attic/acconfig.h, Attic/aclocal.m4, Attic/shadow-utils.spec, configure.in, Makefile.am:
7870         *** empty log message ***
7871
7872 1997-10-01  Marek Michałkiewicz  <marekm@pld.org.pl>
7873
7874         * debian/Attic/changelog, src/chpasswd.c, libmisc/Attic/login_access.c, lib/commonio.h, lib/sgroupio.c, lib/shadowio.c, etc/Attic/login.defs.linux, doc/Attic/CHANGES, doc/Attic/LSM, doc/Attic/README.mirrors, doc/WISHLIST, Attic/shadow-utils.spec:
7875         *** empty log message ***
7876
7877 1997-09-30  Marek Michałkiewicz  <marekm@pld.org.pl>
7878
7879         * src/useradd.c, src/userdel.c, src/usermod.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/newusers.c, src/passwd.c, src/pwck.c, src/grpck.c, src/grpconv.c, src/grpunconv.c, src/login.c, src/groupmod.c, src/Attic/dpasswd.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/Makefile.am, old/Attic/install-sh, old/Attic/pwconv-old.8, old/Attic/pwunconv-old.8, old/Attic/Makefile.am, man/Attic/pwconv.8, man/Attic/pwunconv.8, libmisc/setugid.c, libmisc/shell.c, libmisc/utmp.c, libmisc/mail.c, libmisc/obscure.c, libmisc/pam_pass.c, libmisc/salt.c, libmisc/Attic/login_access.c, libmisc/isexpired.c, libmisc/env.c, libmisc/fields.c, libmisc/addgrps.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, libmisc/copydir.c, lib/Attic/strerror.c, lib/Attic/snprintf.c, lib/Attic/snprintf.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c, lib/shadowio.h, lib/Attic/putgrent.c, lib/Attic/pwent.c, lib/pwauth.c, lib/Attic/getpass.c, lib/Attic/grent.c, lib/prototypes.h, lib/commonio.c, lib/commonio.h, lib/defines.h, lib/encrypt.c, lib/getdef.c, lib/Makefile.am, etc/Attic/login.defs.linux, doc/Attic/README.linux, doc/Attic/README.mirrors, doc/WISHLIST, doc/Attic/CHANGES, doc/Attic/LSM, doc/Makefile.am, debian/Attic/rules, debian/Attic/changelog, contrib/adduser.c, configure.in, Attic/acconfig.h:
7880         *** empty log message ***
7881
7882 1997-09-29  Marek Michałkiewicz  <marekm@pld.org.pl>
7883
7884         * man/Attic/chpasswd.8, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Attic/su.1, man/Makefile.am:
7885         *** empty log message ***
7886
7887 1997-06-16  Marek Michałkiewicz  <marekm@pld.org.pl>
7888
7889         * doc/Attic/console.c.spec, doc/Makefile.am, doc/WISHLIST, doc/console.c.spec.txt, doc/Attic/CHANGES, debian/Attic/changelog, src/Attic/shadowconfig.sh, redhat/Attic/Makefile.am, redhat/Attic/README, redhat/Attic/shadow-970502-config.patch, redhat/Attic/shadow-utils.spec, doc/Attic/README.mirrors, doc/Attic/README.shadow-paper, doc/Attic/README.linux, debian/Attic/login.copyright, debian/Attic/passwd.copyright, debian/Attic/secure-su.copyright, Attic/shadow-utils.spec, Makefile.am, configure.in:
7890         *** empty log message ***
7891
7892 1997-06-01  Marek Michałkiewicz  <marekm@pld.org.pl>
7893
7894         * debian/Attic/changelog, src/userdel.c, src/usermod.c, src/pwck.c, src/pwunconv.c, src/useradd.c, src/grpunconv.c, src/newusers.c, src/passwd.c, src/expiry.c, src/grpconv.c, src/chage.c, src/chfn.c, src/chpasswd.c, src/chsh.c, src/Makefile.am, redhat/Attic/Makefile.am, redhat/Attic/README, redhat/Attic/shadow-970502-config.patch, redhat/Attic/shadow-utils.spec, libmisc/mail.c, libmisc/Attic/login_desrpc.c, lib/pwio.h, lib/shadowio.c, lib/shadowio.h, lib/prototypes.h, lib/pwauth.c, lib/pwio.c, lib/commonio.c, lib/defines.h, doc/Attic/README.linux, doc/WISHLIST, doc/Attic/CHANGES, doc/Attic/INSTALL, Attic/install-sh, Attic/mkinstalldirs, Attic/acconfig.h, Makefile.am, configure.in:
7895         *** empty log message ***
7896
7897 1997-05-02  Marek Michałkiewicz  <marekm@pld.org.pl>
7898
7899         * src/Attic/shadowconfig.sh, src/Makefile.am, man/Makefile.am, libmisc/mail.c, libmisc/salt.c, lib/sgroupio.c, lib/shadowio.c, lib/groupio.c, lib/pwio.c, etc/Makefile.am, doc/WISHLIST, doc/Attic/CHANGES, debian/Attic/shadowconfig, debian/Attic/Makefile.am, debian/Attic/changelog, debian/Attic/control, debian/Attic/rules, configure.in, Attic/configure, shlib/Attic/Makefile.in, man/Attic/Makefile.in, libmisc/Attic/Makefile.in, lib/Attic/Makefile.in, etc/Attic/Makefile.in, doc/Attic/Makefile.in, contrib/Attic/Makefile.in, Attic/Makefile.in, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/shadow.5, man/Attic/su.1, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Attic/shadow.3, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/limits.5, man/Attic/login.1, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, libmisc/valid.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/tz.c, libmisc/utmp.c, libmisc/Attic/setup.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/strtoday.c, libmisc/sub.c, libmisc/setugid.c, libmisc/obscure.c, libmisc/pwd2spwd.c, libmisc/rlogin.c, libmisc/Attic/login_access.c, libmisc/loginprompt.c, libmisc/motd.c, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/list.c, libmisc/log.c, libmisc/copydir.c, libmisc/entry.c, libmisc/env.c, libmisc/failure.c, libmisc/fields.c, libmisc/age.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, lib/utent.c, lib/Attic/shadow_.h, lib/Attic/spdbm.c, lib/Attic/sppack.c, lib/Attic/strstr.c, lib/shadow.c, lib/sgetpwent.c, lib/sgetspent.c, lib/Attic/pwpack.c, lib/Attic/rad64.c, lib/Attic/rename.c, lib/Attic/rmdir.c, lib/sgetgrent.c, lib/Attic/pwdbm.c, lib/Attic/pwent.c, lib/pwauth.h, lib/Attic/putgrent.c, lib/Attic/putpwent.c, lib/Attic/putspent.c, lib/port.h, lib/pwauth.c, lib/Attic/lastlog_.h, lib/Attic/mkdir.c, lib/lockpw.c, lib/port.c, lib/Attic/grpack.c, lib/Attic/gsdbm.c, lib/Attic/gspack.c, lib/gshadow.c, lib/gshadow_.h, lib/Attic/getpass.c, lib/Attic/grdbm.c, lib/Attic/grent.c, lib/getdef.c, lib/Attic/dialup.h, lib/encrypt.c, lib/faillog.h, lib/fputsx.c, lib/Attic/dialchk.c, lib/Attic/dialup.c, lib/commonio.c, lib/defines.h, etc/Attic/login.defs.linux, etc/login.defs, doc/Attic/README.linux, doc/Attic/LICENSE, doc/Attic/README, doc/Makefile.am, doc/HOWTO, doc/Attic/ANNOUNCE, debian/Attic/secure-su.README, debian/Attic/secure-su.conffiles, debian/Attic/secure-su.copyright, debian/Attic/secure-su.postrm, debian/Attic/secure-su.preinst, debian/Attic/securetty, debian/Attic/passwd.conffiles, debian/Attic/passwd.copyright, debian/Attic/passwd.postinst, debian/Attic/porttime, debian/Attic/login.conffiles, debian/Attic/login.copyright, debian/Attic/login.postinst, debian/Attic/login.postrm, debian/Attic/login.preinst, debian/Attic/login.prerm, debian/Attic/logoutd, Attic/acconfig.h, Attic/config.h.in, Makefile.am, old/Attic/Makefile.in, old/Attic/scologin.c, old/Attic/orig-config.h, old/Attic/pwconv-old.c, old/Attic/pwd.h.m4, old/Attic/pwunconv-old.c, old/Attic/config.h.sun4, old/Attic/config.h.svr4, old/Attic/config.h.xenix, old/Attic/config.h.linux, old/Attic/Makefile.sun4, old/Attic/Makefile.svr4, old/Attic/Makefile.xenix, old/Attic/Makefile.am, old/Attic/Makefile.linux, src/Attic/Makefile.in, src/pwconv.c, src/userdel.c, src/usermod.c, src/useradd.c, src/su.c, src/sulogin.c, src/Attic/pwconv5.c, src/Attic/scologin.c, src/pwck.c, src/pwunconv.c, src/Attic/patchlevel.h, src/newusers.c, src/passwd.c, src/Attic/mkpasswd.c, src/logoutd.c, src/newgrp.c, src/grpunconv.c, src/id.c, src/lastlog.c, src/login.c, src/grpck.c, src/grpconv.c, src/groupdel.c, src/groupmod.c, src/groups.c, src/faillog.c, src/gpasswd.c, src/groupadd.c, src/Attic/dpasswd.c, src/chsh.c, src/expiry.c, src/chfn.c, src/chpasswd.c, src/chage.c:
7900         *** empty log message ***
7901
7902 1997-02-11  Marek Michałkiewicz  <marekm@pld.org.pl>
7903
7904         * src/groupadd.c, src/useradd.c, libmisc/setupenv.c, lib/sgroupio.c, lib/shadowio.c, lib/groupio.c, lib/pwio.c, lib/Makefile.am, lib/commonio.c, doc/Attic/CHANGES, doc/HOWTO, README, configure.in:
7905         *** empty log message ***
7906
7907 1997-01-08  Marek Michałkiewicz  <marekm@pld.org.pl>
7908
7909         * src/groupadd.c, lib/commonio.c, README, src/useradd.c, src/userdel.c, src/usermod.c, src/Attic/pwconv5.c, src/pwconv.c, src/su.c, src/passwd.c, src/pwck.c, src/grpunconv.c, src/login.c, src/logoutd.c, src/newgrp.c, src/grpck.c, src/grpconv.c, src/faillog.c, src/gpasswd.c, src/groupmod.c, src/chage.c, src/chfn.c, src/chsh.c, src/expiry.c, libmisc/ttytype.c, libmisc/utmp.c, libmisc/Attic/suauth.c, libmisc/strtoday.c, libmisc/shell.c, libmisc/failure.c, libmisc/log.c, libmisc/loginprompt.c, libmisc/myname.c, lib/shadowio.h, libmisc/Makefile.am, libmisc/chkname.c, lib/sgetpwent.c, lib/sgroupio.c, lib/sgroupio.h, lib/shadow.c, lib/shadowio.c, lib/Attic/pwent.c, lib/pwio.c, lib/pwio.h, lib/Attic/putgrent.c, lib/groupio.c, lib/groupio.h, lib/gshadow.c, lib/prototypes.h, lib/defines.h, lib/faillog.h, lib/getdef.c, doc/Attic/README.linux, doc/WISHLIST, etc/Attic/login.defs.linux, lib/Makefile.am, doc/Attic/CHANGES, doc/HOWTO, Attic/acconfig.h, configure.in:
7910         *** empty log message ***
7911
7912 1996-10-27  Marek Michałkiewicz  <marekm@pld.org.pl>
7913
7914         * src/usermod.c, src/grpck.c, src/useradd.c, src/userdel.c, src/chsh.c, src/gpasswd.c, libmisc/isexpired.c, libmisc/limits.c, lib/sgroupio.c, lib/shadowio.c, lib/commonio.c, lib/groupio.c, lib/pwio.c, doc/Attic/CHANGES, doc/Attic/README.linux, doc/WISHLIST, Attic/configure, configure.in:
7915         *** empty log message ***
7916
7917 1996-09-25  Marek Michałkiewicz  <marekm@pld.org.pl>
7918
7919         * src/usermod.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/su.c, src/Attic/pwconv5.c, src/newgrp.c, src/passwd.c, src/pwck.c, src/grpck.c, src/login.c, src/logoutd.c, src/gpasswd.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/chfn.c, src/chsh.c, src/chage.c, libmisc/strtoday.c, libmisc/env.c, libmisc/fields.c, libmisc/isexpired.c, libmisc/setupenv.c, lib/Attic/rad64.c, lib/getdef.c, lib/prototypes.h, lib/defines.h, etc/Attic/login.defs.linux, doc/Attic/README.linux, doc/WISHLIST, doc/Attic/CHANGES, Attic/configure, configure.in, Attic/config.h.in:
7920         *** empty log message ***
7921
7922 1996-09-20  Marek Michałkiewicz  <marekm@pld.org.pl>
7923
7924         * src/usermod.c, src/su.c, src/sulogin.c, src/useradd.c, src/userdel.c, src/newusers.c, src/passwd.c, src/pwck.c, src/grpck.c, src/login.c, src/logoutd.c, src/newgrp.c, src/groupdel.c, src/groupmod.c, src/Attic/dpasswd.c, src/chsh.c, src/gpasswd.c, src/groupadd.c, src/Attic/Makefile.in, src/chage.c, src/chfn.c, src/Makefile.am, libmisc/Attic/suauth.c, libmisc/shell.c, libmisc/sub.c, libmisc/ttytype.c, libmisc/env.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/chowntty.c, lib/prototypes.h, lib/getdef.c, doc/Attic/CHANGES, doc/WISHLIST:
7925         *** empty log message ***
7926
7927 1996-09-10  Marek Michałkiewicz  <marekm@pld.org.pl>
7928
7929         * src/su.c, src/sulogin.c, src/usermod.c, src/logoutd.c, src/newgrp.c, src/passwd.c, src/pwconv.c, src/Attic/Makefile.in, src/chfn.c, src/chsh.c, src/grpunconv.c, src/login.c, src/Makefile.am, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.access.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/faillog.5, libmisc/isexpired.c, libmisc/obscure.c, libmisc/setupenv.c, libmisc/utmp.c, libmisc/age.c, lib/Attic/getpass.c, lib/defines.h, lib/getdef.c, etc/Attic/login.defs.linux, etc/limits, etc/login.access, doc/Attic/CHANGES, doc/Attic/README.linux, doc/WISHLIST, contrib/Attic/Makefile.in, contrib/Makefile.am, Attic/configure, configure.in:
7930         *** empty log message ***
7931
7932 1996-08-10  Marek Michałkiewicz  <marekm@pld.org.pl>
7933
7934         * old/Attic/Makefile.am, old/Attic/Makefile.linux, old/Attic/Makefile.sun4, old/Attic/Makefile.svr4, old/Attic/Makefile.xenix, old/Attic/config.h.linux, old/Attic/config.h.sun4, old/Attic/config.h.svr4, old/Attic/config.h.xenix, old/Attic/install-sh, old/Attic/orig-config.h, old/Attic/pwd.h.m4, shlib/Attic/Makefile.am, shlib/Attic/Makefile.in, shlib/Attic/Makefile.in.saved:
7935         New file.
7936
7937         * contrib/adduser-old.c, contrib/adduser.sh, contrib/adduser2.sh, contrib/atudel:
7938         960810 - first version under cvs
7939
7940         * contrib/Attic/Makefile.in, contrib/Makefile.am, contrib/README, contrib/adduser.c, contrib/pwdauth.c, doc/Attic/ANNOUNCE, doc/Attic/CHANGES, doc/Attic/LICENSE, doc/Attic/Makefile.in, doc/Attic/README, doc/Attic/README.linux, doc/Attic/README.sun4, doc/Attic/automake-1.0.diff, doc/Attic/console.c.spec, doc/HOWTO, doc/Makefile.am, doc/README.limits, doc/WISHLIST, etc/Attic/Makefile.in, etc/Attic/login.defs.linux, etc/Makefile.am, etc/login.access, etc/login.defs, old/Attic/Makefile.in, src/Attic/patchlevel.h, src/Attic/pwconv5.c, src/Attic/scologin.c, src/chage.c, src/chfn.c, src/chsh.c, src/expiry.c, src/gpasswd.c, src/groups.c, src/grpconv.c, src/id.c, src/login.c, src/newgrp.c, src/passwd.c, src/pwconv.c, src/pwunconv.c, src/su.c, src/sulogin.c, lib/Attic/dialup.h, lib/Attic/grdbm.c, lib/Attic/grent.c, lib/Attic/grpack.c, lib/Attic/gsdbm.c, lib/Attic/gspack.c, lib/Attic/lastlog_.h, lib/Attic/md5.c, lib/Attic/md5.h, lib/Attic/md5crypt.c, lib/Attic/mkdir.c, lib/Attic/putgrent.c, lib/Attic/putpwent.c, lib/Attic/putspent.c, lib/Attic/pwdbm.c, lib/Attic/pwent.c, lib/Attic/pwpack.c, lib/Attic/rcsid.h, lib/Attic/rename.c, lib/Attic/rmdir.c, lib/Attic/shadow_.h, lib/Attic/spdbm.c, lib/Attic/sppack.c, lib/Attic/strdup.c, lib/Attic/strstr.c, lib/defines.h, lib/faillog.h, lib/getdef.h, lib/groupio.h, lib/gshadow_.h, lib/port.h, lib/prototypes.h, lib/pwauth.h, lib/pwio.h, lib/sgetgrent.c, lib/sgetpwent.c, lib/sgetspent.c, lib/sgroupio.h, lib/shadow.c, lib/shadowio.c, lib/shadowio.h, lib/utent.c, src/Attic/Makefile.in, src/Attic/dpasswd.c, src/Attic/mkpasswd.c, src/Makefile.am, src/chpasswd.c, src/faillog.c, src/groupadd.c, src/groupdel.c, src/groupmod.c, src/grpck.c, src/lastlog.c, src/logoutd.c, src/newusers.c, src/pwck.c, src/useradd.c, src/userdel.c, src/usermod.c, lib/Attic/Makefile.in, lib/Attic/dialchk.c, lib/Attic/dialup.c, lib/Attic/getpass.c, lib/Attic/rad64.c, lib/Makefile.am, lib/commonio.c, lib/encrypt.c, lib/fputsx.c, lib/getdef.c, lib/groupio.c, lib/gshadow.c, lib/lockpw.c, lib/port.c, lib/pwauth.c, lib/pwio.c, lib/sgroupio.c, libmisc/Attic/login_access.c, libmisc/Attic/login_desrpc.c, libmisc/Attic/login_krb.c, libmisc/Attic/setup.c, libmisc/Attic/suauth.c, libmisc/age.c, libmisc/basename.c, libmisc/chkname.c, libmisc/chowndir.c, libmisc/chowntty.c, libmisc/console.c, libmisc/copydir.c, libmisc/entry.c, libmisc/env.c, libmisc/failure.c, libmisc/fields.c, libmisc/hushed.c, libmisc/isexpired.c, libmisc/limits.c, libmisc/list.c, libmisc/log.c, libmisc/loginprompt.c, libmisc/mail.c, libmisc/motd.c, libmisc/obscure.c, libmisc/pwd2spwd.c, libmisc/rlogin.c, libmisc/salt.c, libmisc/setugid.c, libmisc/setupenv.c, libmisc/shell.c, libmisc/strtoday.c, libmisc/sub.c, libmisc/sulog.c, libmisc/ttytype.c, libmisc/tz.c, libmisc/ulimit.c, libmisc/utmp.c, libmisc/valid.c, libmisc/xmalloc.c, man/Attic/Makefile.in, man/Attic/chage.1, man/Attic/chfn.1, man/Attic/chpasswd.8, man/Attic/chsh.1, man/Attic/dpasswd.8, man/Attic/faillog.5, man/Attic/faillog.8, man/Attic/gpasswd.1, man/Attic/groupadd.8, man/Attic/groupdel.8, man/Attic/groupmod.8, man/Attic/groups.1, man/Attic/grpck.8, man/Attic/id.1, man/Attic/lastlog.8, man/Attic/login.1, man/Attic/login.access.5, man/Attic/login.defs.5, man/Attic/logoutd.8, man/Attic/mkpasswd.8, man/Attic/newgrp.1, man/Attic/newusers.8, man/Attic/passwd.1, man/Attic/passwd.5, man/Attic/porttime.5, man/Attic/pw_auth.3, man/Attic/pwauth.8, man/Attic/pwck.8, man/Attic/pwconv.8, man/Attic/pwunconv.8, man/Attic/shadow.3, man/Attic/shadow.5, man/Attic/su.1, man/Attic/suauth.5, man/Attic/sulogin.8, man/Attic/useradd.8, man/Attic/userdel.8, man/Attic/usermod.8, man/Makefile.am, Attic/Makefile.in, Attic/acconfig.h, Attic/aclocal.m4, Attic/config.h.in, Attic/configure, Attic/install-sh, Attic/mkinstalldirs, Attic/stamp-h.in, Makefile.am, README, configure.in, libmisc/Attic/Makefile.in, libmisc/Makefile.am, libmisc/addgrps.c:
7941         New file.
7942