diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-02-21 07:41:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-02-21 07:41:06 +0000 |
commit | 4905839f6d08ee8c1120c5b6a21473712101aa04 (patch) | |
tree | ec36d9e6e8daceb6600121463108fcd32e925f44 /sys | |
parent | f620c6dc4668f543bd81245b4bfedf29df93988d (diff) |
elliminate unneccessary printf in dos2unix time conversion,
coze for Windoze 95 fs it is ok.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/msdosfs/msdosfs_conv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/msdosfs/msdosfs_conv.c b/sys/msdosfs/msdosfs_conv.c index 4b475811bb1..697c3b07672 100644 --- a/sys/msdosfs/msdosfs_conv.c +++ b/sys/msdosfs/msdosfs_conv.c @@ -1,4 +1,4 @@ -/* $NetBSD: msdosfs_conv.c,v 1.13 1995/11/29 15:08:36 ws Exp $ */ +/* $OpenBSD: msdosfs_conv.c,v 1.3 1996/02/21 07:41:05 mickey Exp $ */ /*- * Copyright (C) 1995 Wolfgang Solfrank. @@ -207,8 +207,10 @@ dos2unixtime(dd, dt, tsp) */ month = (dd & DD_MONTH_MASK) >> DD_MONTH_SHIFT; if (month == 0) { +#if 0 printf("dos2unixtime(): month value out of range (%ld)\n", month); +#endif month = 1; } for (m = 0; m < month - 1; m++) |