From 3813dd120e250daef0c5ae0d925f5279f418c692 Mon Sep 17 00:00:00 2001 From: Heinz Mauelshagen Date: Mon, 17 Dec 2001 11:07:33 +0000 Subject: [PATCH] Typos in error messages --- lib/device/dev-cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/device/dev-cache.c b/lib/device/dev-cache.c index f4bce7f78..6b8ee4b34 100644 --- a/lib/device/dev-cache.c +++ b/lib/device/dev-cache.c @@ -108,12 +108,12 @@ static int _insert_dev(const char *path, dev_t d) } if (!_add_alias(dev, path)) { - log_err("Couldn't add alias to dir cache."); + log_err("Couldn't add alias to dev cache."); return 0; } if (!hash_insert(_cache.names, path, dev)) { - log_err("Couldn't add name to hash in dir cache."); + log_err("Couldn't add name to hash in dev cache."); return 0; }