summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-02 11:36:52 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-02 18:16:50 +0100
commit7db63990698563fd5d32698cb7988358cf5ab247 (patch)
tree745a6e1b3aa316828ef32a8d09dfa129c1db75b6 /lib/tevent/tevent.c
parentd33b6aeff3ff0220c16211936043934cfa3ec71b (diff)
downloadsamba-7db63990698563fd5d32698cb7988358cf5ab247.tar.gz
samba-7db63990698563fd5d32698cb7988358cf5ab247.tar.bz2
samba-7db63990698563fd5d32698cb7988358cf5ab247.zip
tevent: rename event_[s|g]et_fd_flags => tevent_fd_[s|g]et_flags
metze
Diffstat (limited to 'lib/tevent/tevent.c')
-rw-r--r--lib/tevent/tevent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index 563a6522a5..4c87ef5f73 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -233,7 +233,7 @@ struct aio_event *event_add_aio(struct tevent_context *ev,
/*
return the fd event flags
*/
-uint16_t event_get_fd_flags(struct tevent_fd *fde)
+uint16_t tevent_fd_get_flags(struct tevent_fd *fde)
{
if (!fde) return 0;
return fde->event_ctx->ops->get_fd_flags(fde);
@@ -242,7 +242,7 @@ uint16_t event_get_fd_flags(struct tevent_fd *fde)
/*
set the fd event flags
*/
-void event_set_fd_flags(struct tevent_fd *fde, uint16_t flags)
+void tevent_fd_set_flags(struct tevent_fd *fde, uint16_t flags)
{
if (!fde) return;
fde->event_ctx->ops->set_fd_flags(fde, flags);