diff options
Diffstat (limited to 'fish/options.h')
-rw-r--r-- | fish/options.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fish/options.h b/fish/options.h index 29117f64..137b2d72 100644 --- a/fish/options.h +++ b/fish/options.h @@ -80,7 +80,13 @@ struct drv { */ int nr_drives; /* number of drives for this guest */ - enum { drv_a, drv_d, drv_N } type; + enum { + drv_a, /* -a option */ + drv_d, /* -d option */ +#if COMPILING_GUESTFISH + drv_N, /* -N option (guestfish only) */ +#endif + } type; union { struct { char *filename; /* disk filename */ |