diff options
author | alfred <alfred@FreeBSD.org> | 2001-02-23 03:43:05 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-02-23 03:43:05 +0000 |
commit | 642141e5c9175709dced47e2b2d8910c757352a3 (patch) | |
tree | 587e3fb5e73e61ea62c7d60014495af0d977c846 /sys/fs | |
parent | 006d7dae46c120e26f49fe7bccb17d4f426dd882 (diff) | |
download | FreeBSD-src-642141e5c9175709dced47e2b2d8910c757352a3.zip FreeBSD-src-642141e5c9175709dced47e2b2d8910c757352a3.tar.gz |
Display the Joliet Extension 'level' in the log message.
PR: kern/24998
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index aaefb78..3017339 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -487,7 +487,7 @@ iso_mountfs(devvp, mp, p, argp) /* Decide whether to use the Joliet descriptor */ if (isomp->iso_ftype != ISO_FTYPE_RRIP && joliet_level) { - log(LOG_INFO, "cd9660: Joliet Extension\n"); + log(LOG_INFO, "cd9660: Joliet Extension (Level %d)\n", joliet_level); rootp = (struct iso_directory_record *) sup->root_directory_record; bcopy (rootp, isomp->root, sizeof isomp->root); |