Your message dated Mon, 27 Mar 2006 03:20:25 +0200
with message-id <[EMAIL PROTECTED]>
and subject line nfs-kernel-server: rpc.mountd not Y2K compliant
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: nfs-kernel-server
Version: 1:1.0.6-3
Severity: minor
When run in foreground mode (-F), rpc.mountd incorrectly deals with the year:
mountd[23833] 09/07/104 12:39 mnt [1 104/9/7 12:39:07 uml-jkbridal 0.0+0,20000]
mountd[23833] 09/07/104 12:39 /var/cache/apt
mountd[23833] 09/07/104 12:39 NFS mount of /var/cache/apt attempted from
192.168.1.143
mountd[23833] 09/07/104 12:39 NFS client (null) tried to access /var/cache/apt
The year is reported as 104 instead of "04" or "2004" .. this is a common
bug that has been fixed in most packages for years.
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686
Locale: LANG=C, LC_CTYPE=C
Versions of packages nfs-kernel-server depends on:
ii debconf 1.4.32 Debian configuration management sy
ii libc6 2.3.2.ds1-16 GNU C Library: Shared libraries an
ii libwrap0 7.6.dbs-5 Wietse Venema's TCP wrappers libra
ii nfs-common 1:1.0.6-3 NFS support files common to client
ii sysvinit 2.86-1 System-V like init
-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 1:1.0.7-1
On Tue, Sep 07, 2004 at 12:43:33PM -0500, Jeff Noxon wrote:
> When run in foreground mode (-F), rpc.mountd incorrectly deals with the year:
>
> mountd[23833] 09/07/104 12:39 mnt [1 104/9/7 12:39:07 uml-jkbridal
> 0.0+0,20000]
> mountd[23833] 09/07/104 12:39 /var/cache/apt
> mountd[23833] 09/07/104 12:39 NFS mount of /var/cache/apt attempted from
> 192.168.1.143
> mountd[23833] 09/07/104 12:39 NFS client (null) tried to access /var/cache/apt
>
> The year is reported as 104 instead of "04" or "2004" .. this is a common
> bug that has been fixed in most packages for years.
This is actually fixed in two different ways in 1.0.7, it seems:
if (log_stderr) {
#ifdef VERBOSE_PRINTF
time_t now;
struct tm *tm;
time(&now);
tm = localtime(&now);
fprintf(stderr, "%s[%d] %04d-%02d-%02d %02d:%02d:%02d %s\n",
log_name, log_pid,
tm->tm_year+1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec,
buff);
#else
fprintf(stderr, "%s: %s\n", log_name, buff);
#endif
)
First, the date format has been fixed. Second, the Debian packages seem to
now simply compile without VERBOSE_PRINTF, which is confirmed by simple
testing. In other words, closing this bug.
/* Steinar */
--
Homepage: http://www.sesse.net/
--- End Message ---