summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-05-08 09:26:57 +0100
committerRichard Jones <rjones@redhat.com>2010-05-08 09:26:57 +0100
commit301abf33c6985b61604dfae5db75cf767aa5e651 (patch)
tree08613fb0fe66110bb96f05913ce61e02cec96ffc /src
parentbece54704bb081339a87233bbc5401f2892467be (diff)
downloadlibguestfs-301abf33c6985b61604dfae5db75cf767aa5e651.tar.gz
libguestfs-301abf33c6985b61604dfae5db75cf767aa5e651.tar.xz
libguestfs-301abf33c6985b61604dfae5db75cf767aa5e651.zip
generator: FishAction is no longer used, remove this feature.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/generator.ml6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/generator.ml b/src/generator.ml
index 31ef3130..d2abafcb 100755
--- a/src/generator.ml
+++ b/src/generator.ml
@@ -181,7 +181,6 @@ type flags =
| ProtocolLimitWarning (* display warning about protocol size limits *)
| DangerWillRobinson (* flags particularly dangerous commands *)
| FishAlias of string (* provide an alias for this cmd in guestfish *)
- | FishAction of string (* call this function in guestfish *)
| FishOutput of fish_output_t (* how to display output in guestfish *)
| NotInFish (* do not export via guestfish *)
| NotInDocs (* do not add this function to documentation *)
@@ -7575,10 +7574,7 @@ and generate_fish_cmds () =
) (snd style);
(* Call C API function. *)
- let fn =
- try find_map (function FishAction n -> Some n | _ -> None) flags
- with Not_found -> sprintf "guestfs_%s" name in
- pr " r = %s " fn;
+ pr " r = guestfs_%s " name;
generate_c_call_args ~handle:"g" style;
pr ";\n";