From 2c6721086558a9b629e3dec6d82820df400b710e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 15 Jun 2003 21:14:27 +0000 Subject: [PATCH] Added two more ToDo items so that I do not forget about them. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3531 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/os/driver_settings.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/kernel/libroot/os/driver_settings.c b/src/kernel/libroot/os/driver_settings.c index f0e9711acf..4074df865b 100644 --- a/src/kernel/libroot/os/driver_settings.c +++ b/src/kernel/libroot/os/driver_settings.c @@ -211,6 +211,8 @@ parse_parameter(struct driver_parameter *parameter, char **_pos, int32 level) // the flat settings style allows to put a '=' between the // parameter name and its values + // ToDo: should this symbol be allowed without surrounding + // white space? like "key=value" instead of "key = value"? if (!strcmp(value, "=") && parameter->value_count == 0) continue; @@ -372,6 +374,9 @@ put_string(char **_buffer, size_t *_bufferSize, char *string) if (string == NULL) return true; + // ToDo: we might have to quote the string in question or + // want to escape several of its characters - that's not + // yet implemented! length = strlen(string); // update _bufferSize in any way, so that we can chain several