diff options
author | Alan Jenkins <alan-jenkins@tuffmail.co.uk> | 2009-08-08 14:29:38 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-08-08 15:42:05 +0200 |
commit | 214a6c791cbc0c1a190c430eb37056087e661344 (patch) | |
tree | d9d42bf69d517d3b62240c2b6f0f18c442aead64 /libudev/libudev-monitor.c | |
parent | bd2dab9ce566a4e30d5372be9fa4e1921b7749f7 (diff) |
fix spelling
Fix spelling in docbook comments, code comments, and a local variable
name. Thanks to "ispell -h" for docbook HTML and "scspell" for source
code.
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
Diffstat (limited to 'libudev/libudev-monitor.c')
-rw-r--r-- | libudev/libudev-monitor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libudev/libudev-monitor.c b/libudev/libudev-monitor.c index 2c6c685c6b..657f23d727 100644 --- a/libudev/libudev-monitor.c +++ b/libudev/libudev-monitor.c @@ -336,7 +336,7 @@ int udev_monitor_enable_receiving(struct udev_monitor *udev_monitor) /* * get the address the kernel has assigned us - * it is usually, but not neccessarily the pid + * it is usually, but not necessarily the pid */ addrlen = sizeof(struct sockaddr_nl); err = getsockname(udev_monitor->sock, (struct sockaddr *)&snl, &addrlen); @@ -747,7 +747,7 @@ int udev_monitor_send_device(struct udev_monitor *udev_monitor, /* * Use custom address for target, or the default one. * - * If we send to a muticast group, we will get + * If we send to a multicast group, we will get * ECONNREFUSED, which is expected. */ if (destination != NULL) @@ -768,7 +768,7 @@ int udev_monitor_send_device(struct udev_monitor *udev_monitor, * udev_monitor_filter_add_match_subsystem_devtype: * @udev_monitor: the monitor * @subsystem: the subsystem value to match the incoming devices against - * @devtype: the devtype value to matvh the incoming devices against + * @devtype: the devtype value to match the incoming devices against * * The filter must be installed before the monitor is switched to listening mode. * |