From: Lucas De Marchi Date: Tue, 20 Dec 2011 21:31:14 +0000 (-0200) Subject: Removing comments saying flags are not implemented X-Git-Tag: v2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f39dc70e4becd3cb8c1bcd5b470b5cd17ef6345b;p=thirdparty%2Fkmod.git Removing comments saying flags are not implemented Both removal and insertion flags are already implemented. --- diff --git a/libkmod/libkmod.h b/libkmod/libkmod.h index 2d53aae0..38b81cfd 100644 --- a/libkmod/libkmod.h +++ b/libkmod/libkmod.h @@ -74,13 +74,13 @@ struct kmod_list *kmod_list_last(const struct kmod_list *first_entry); list_entry != NULL; \ list_entry = kmod_list_prev(first_entry, list_entry)) -/* Removal flags, not implemented yet */ +/* Removal flags */ enum kmod_remove { KMOD_REMOVE_FORCE = O_TRUNC, KMOD_REMOVE_NOWAIT = O_NONBLOCK, }; -/* Insertion flags, not implemented yet */ +/* Insertion flags */ enum kmod_insert { KMOD_INSERT_FORCE_VERMAGIC = 0x1, KMOD_INSERT_FORCE_MODVERSION = 0x2,