libudev: ctrl - fix typo in set_env()

This commit is contained in:
Kay Sievers 2008-10-16 13:34:11 +02:00
parent 2c09b3b41d
commit 6a95b1e7d6

View file

@ -30,6 +30,7 @@
#include "libudev.h"
#include "libudev-private.h"
/* last known version with this wire protocol */
#define UDEV_CTRL_MAGIC "udevd-128"
enum udev_ctrl_msg_type {
@ -189,7 +190,7 @@ int udev_ctrl_send_reload_rules(struct udev_ctrl *uctrl)
int udev_ctrl_send_set_env(struct udev_ctrl *uctrl, const char *key)
{
ctrl_send(uctrl, UDEV_CTRL_SET_ENV, 0, optarg);
ctrl_send(uctrl, UDEV_CTRL_SET_ENV, 0, key);
return 0;
}