mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-25 14:54:45 +02:00
- (bal) One too many nulls in ports-aix.c
This commit is contained in:
parent
604de56009
commit
d00a1a1a03
@ -3,6 +3,7 @@
|
|||||||
faster data rate) Bug #124
|
faster data rate) Bug #124
|
||||||
- (bal) glob.c defines TILDE and AIX also defines it. #undef it first.
|
- (bal) glob.c defines TILDE and AIX also defines it. #undef it first.
|
||||||
bug #265
|
bug #265
|
||||||
|
- (bal) One too many nulls in ports-aix.c
|
||||||
|
|
||||||
20020703
|
20020703
|
||||||
- (bal) Updated contrib/cygwin/ patch by vinschen@redhat.com
|
- (bal) Updated contrib/cygwin/ patch by vinschen@redhat.com
|
||||||
@ -1273,4 +1274,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2334 2002/07/04 18:20:51 mouring Exp $
|
$Id: ChangeLog,v 1.2335 2002/07/04 19:33:49 mouring Exp $
|
||||||
|
@ -41,8 +41,8 @@ aix_usrinfo(struct passwd *pw)
|
|||||||
char *cp;
|
char *cp;
|
||||||
|
|
||||||
cp = xmalloc(16 + 2 * strlen(pw->pw_name));
|
cp = xmalloc(16 + 2 * strlen(pw->pw_name));
|
||||||
i = sprintf(cp, "LOGNAME=%s%cNAME=%s%c%c", pw->pw_name, 0,
|
i = sprintf(cp, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, 0,
|
||||||
pw->pw_name, 0, 0);
|
pw->pw_name, 0);
|
||||||
if (usrinfo(SETUINFO, cp, i) == -1)
|
if (usrinfo(SETUINFO, cp, i) == -1)
|
||||||
fatal("Couldn't set usrinfo: %s", strerror(errno));
|
fatal("Couldn't set usrinfo: %s", strerror(errno));
|
||||||
debug3("AIX/UsrInfo: set len %d", i);
|
debug3("AIX/UsrInfo: set len %d", i);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user