diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-03-30 00:37:14 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-03-30 00:37:14 +0000 |
commit | de4115fc46aed3c4a916909a1a49c3ac7bbdb4ba (patch) | |
tree | 0aa1f3c3236cd1f0a08f458f600308e2c9210498 /sys/isofs/udf/udf_vnops.c | |
parent | ab90071412973f920164985b0b6bcdd98d2f1fda (diff) |
Export udf_transname(), which will be needed
by disklabel spoofing code later on.
Diffstat (limited to 'sys/isofs/udf/udf_vnops.c')
-rw-r--r-- | sys/isofs/udf/udf_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isofs/udf/udf_vnops.c b/sys/isofs/udf/udf_vnops.c index 03e05e9dec9..271bee6657b 100644 --- a/sys/isofs/udf/udf_vnops.c +++ b/sys/isofs/udf/udf_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udf_vnops.c,v 1.2 2005/03/30 00:30:51 pedro Exp $ */ +/* $OpenBSD: udf_vnops.c,v 1.3 2005/03/30 00:37:13 pedro Exp $ */ /* * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org> @@ -474,7 +474,7 @@ udf_read(void *v) * Unicode to the encoding that the kernel/user expects. Return the length * of the translated string. */ -static int +int udf_transname(char *cs0string, char *destname, int len, struct udf_mnt *udfmp) { unicode_t *transname; |