Diff between fb43ba3017d56d5c6847a6958f4b0d45f1ae5fcf and 6dada324a8087b8c7ff969a59ec94b2443891794

Changed Files

File Additions Deletions Status
src/textfile.c +0 -5 modified
src/textfile.h +0 -1 modified

Full Patch

diff --git a/src/textfile.c b/src/textfile.c
index b28dd91..9cb6bf2 100644
--- a/src/textfile.c
+++ b/src/textfile.c
@@ -380,11 +380,6 @@ char *textfile_get(const char *pathname, const char *key)
 	return read_key(pathname, key, 0);
 }
 
-char *textfile_caseget(const char *pathname, const char *key)
-{
-	return read_key(pathname, key, 1);
-}
-
 int textfile_foreach(const char *pathname, textfile_cb func, void *data)
 {
 	struct stat st;
diff --git a/src/textfile.h b/src/textfile.h
index 7214455..b779bd2 100644
--- a/src/textfile.h
+++ b/src/textfile.h
@@ -31,7 +31,6 @@ int create_name(char *buf, size_t size, const char *path,
 int textfile_put(const char *pathname, const char *key, const char *value);
 int textfile_del(const char *pathname, const char *key);
 char *textfile_get(const char *pathname, const char *key);
-char *textfile_caseget(const char *pathname, const char *key);
 
 typedef void (*textfile_cb) (char *key, char *value, void *data);