diff options
author | Andrew Tridgell <tridge@samba.org> | 1999-12-13 13:27:58 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1999-12-13 13:27:58 +0000 |
commit | 3db52feb1f3b2c07ce0b06ad4a7099fa6efe3fc7 (patch) | |
tree | 866dd15416c3d8554bb207709f433a87ad0c012d /source3/lib/replace.c | |
parent | f6276724bafdb6145c0c7b565172d80cb04516ea (diff) | |
download | samba-3db52feb1f3b2c07ce0b06ad4a7099fa6efe3fc7.tar.gz samba-3db52feb1f3b2c07ce0b06ad4a7099fa6efe3fc7.tar.xz samba-3db52feb1f3b2c07ce0b06ad4a7099fa6efe3fc7.zip |
first pass at updating head branch to be to be the same as the SAMBA_2_0 branch
(This used to be commit 453a822a76780063dff23526c35408866d0c0154)
Diffstat (limited to 'source3/lib/replace.c')
-rw-r--r-- | source3/lib/replace.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/lib/replace.c b/source3/lib/replace.c index c6a42594177..6a492f977c3 100644 --- a/source3/lib/replace.c +++ b/source3/lib/replace.c @@ -70,7 +70,7 @@ Corrections by richard.kettlewell@kewill.com epoch = (t->tm_year - 70) * YEAR + ((n / 4 - n / 100 + n / 400) - (1969 / 4 - 1969 / 100 + 1969 / 400)) * DAY; - y = t->tm_year; + y = t->tm_year + 1900; m = 0; for(i = 0; i < t->tm_mon; i++) { @@ -168,7 +168,6 @@ Corrections by richard.kettlewell@kewill.com struct group *g; char *gr; - setgrent(); grouplst[0] = id; i = 1; while (i < NGROUPS_MAX && @@ -188,7 +187,7 @@ Corrections by richard.kettlewell@kewill.com } } endgrent(); - return(setgroups(i,grouplst)); + return(sys_setgroups(i,grouplst)); #endif /* HAVE_SETGROUPS */ } #endif /* HAVE_INITGROUPS */ |