summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2010-01-16 00:53:09 -0800
committerJustin Pettit <jpettit@nicira.com>2010-01-16 00:53:09 -0800
commit56244b81016f4d60082976845f296f98111d16a3 (patch)
treeadad891868cfa12d192694ce5746f74d2a8c0893 /lib
parentd5cdde1f96992d0ba53f69eedaf4d089ded2a677 (diff)
downloadopenvswitch-56244b81016f4d60082976845f296f98111d16a3.tar.gz
rtnetlink: Fix typo in comments referencing rtnetlink_notifier_register()
Diffstat (limited to 'lib')
-rw-r--r--lib/rtnetlink.c2
-rw-r--r--lib/rtnetlink.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rtnetlink.c b/lib/rtnetlink.c
index 29e02f614..1d302ea63 100644
--- a/lib/rtnetlink.c
+++ b/lib/rtnetlink.c
@@ -76,7 +76,7 @@ rtnetlink_notifier_register(struct rtnetlink_notifier *notifier,
}
/* Cancels notification on 'notifier', which must have previously been
- * registered with lxnetdev_notifier_register(). */
+ * registered with rtnetlink_notifier_register(). */
void
rtnetlink_notifier_unregister(struct rtnetlink_notifier *notifier)
{
diff --git a/lib/rtnetlink.h b/lib/rtnetlink.h
index ca7df7b88..8f1880553 100644
--- a/lib/rtnetlink.h
+++ b/lib/rtnetlink.h
@@ -40,7 +40,7 @@ struct rtnetlink_change {
* specific change. It may be null if the buffer of change information
* overflowed, in which case the function must assume that every device may
* have changed. 'aux' is as specified in the call to
- * lxnetdev_notifier_register(). */
+ * rtnetlink_notifier_register(). */
typedef void rtnetlink_notify_func(const struct rtnetlink_change *, void *aux);
struct rtnetlink_notifier {