diff options
author | Erik Troan <ewt@redhat.com> | 2000-04-26 23:22:01 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-04-26 23:22:01 +0000 |
commit | 141492f266a302bf38b520e6b04556840e91e619 (patch) | |
tree | c124a377d270c8ef0e5668ba42892a07a2486410 /isys/imount.c | |
parent | 83e760be52f83bed749facf21829ea2b3917670a (diff) | |
download | anaconda-141492f266a302bf38b520e6b04556840e91e619.tar.gz anaconda-141492f266a302bf38b520e6b04556840e91e619.tar.xz anaconda-141492f266a302bf38b520e6b04556840e91e619.zip |
exported mkdirChain()
Diffstat (limited to 'isys/imount.c')
-rw-r--r-- | isys/imount.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/isys/imount.c b/isys/imount.c index 66b4e0948..22a038be1 100644 --- a/isys/imount.c +++ b/isys/imount.c @@ -9,7 +9,6 @@ #define _(foo) foo -static int mkdirChain(char * chain); static int mkdirIfNone(char * directory); int doPwMount(char * dev, char * where, char * fs, int rdonly, int istty, @@ -100,7 +99,7 @@ int doPwMount(char * dev, char * where, char * fs, int rdonly, int istty, return 0; } -static int mkdirChain(char * origChain) { +int mkdirChain(char * origChain) { char * chain; char * chptr; |