diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-10-11 01:42:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-10-11 01:42:55 +0000 |
commit | ee3bb0914ddbb1276c4a14e1151f20416f341031 (patch) | |
tree | cfba5cdfe603d267175f4807e55adf74ed82516e /isys/imount.c | |
parent | cbc55e265f3506616b29aa18134b62666e2e4d69 (diff) | |
download | anaconda-ee3bb0914ddbb1276c4a14e1151f20416f341031.tar.gz anaconda-ee3bb0914ddbb1276c4a14e1151f20416f341031.tar.xz anaconda-ee3bb0914ddbb1276c4a14e1151f20416f341031.zip |
2005-10-10 Jeremy Katz <katzj@redhat.com>
* isys/imount.c: Actually assign the nfs mount opts to the right
variable
Diffstat (limited to 'isys/imount.c')
-rw-r--r-- | isys/imount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/imount.c b/isys/imount.c index 00c92d278..0be7b5390 100644 --- a/isys/imount.c +++ b/isys/imount.c @@ -48,7 +48,7 @@ int doPwMount(char * dev, char * where, char * fs, int options, void *data) { int flags = 0; if (data) - strdup(data); + extra_opts = strdup(data); buf = dev; /*logMessage("calling nfsmount(%s, %s, &flags, &extra_opts, &mount_opt)", |