diff options
author | Geoff Levand <geoffrey.levand@am.sony.com> | 2009-01-21 16:26:56 -0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2009-02-01 11:49:29 +1100 |
commit | dae4540e417e2bf72dd83b2713a670bde0056ba9 (patch) | |
tree | bf6f168b7f865e3a35eda16879c2d43637056b3f /discover/device-handler.c | |
parent | 6106bb6672af26232546c07a4b631779f21dbbb0 (diff) | |
download | talos-petitboot-dae4540e417e2bf72dd83b2713a670bde0056ba9.tar.gz talos-petitboot-dae4540e417e2bf72dd83b2713a670bde0056ba9.zip |
Move log to library
Move the log routines to the petitboot library. The log
routines are generic enough to be used for both server and
client. Does not change the log source.
jk: move to lib/log/ instead of lib/
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover/device-handler.c')
-rw-r--r-- | discover/device-handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discover/device-handler.c b/discover/device-handler.c index 7e5819c..9e40fb1 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -8,13 +8,13 @@ #include <talloc/talloc.h> #include <list/list.h> +#include <log/log.h> #include <pb-protocol/pb-protocol.h> #include "device-handler.h" #include "discover-server.h" #include "parser.h" #include "udev.h" -#include "log.h" #include "paths.h" #define MOUNT_BIN "/bin/mount" |