diff options
author | Elliott Hughes <enh@google.com> | 2015-05-06 19:19:24 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-05-07 11:02:08 -0700 |
commit | e5ce30fed81d1918a259be092dcd8bfffc3c2649 (patch) | |
tree | 346fa436221a434c00d7c2a842c78345624b0210 /init/init_parser.h | |
parent | 8b32c30b92be6914da2dca23089473c4f37adfb9 (diff) | |
download | core-e5ce30fed81d1918a259be092dcd8bfffc3c2649.tar.gz core-e5ce30fed81d1918a259be092dcd8bfffc3c2649.tar.bz2 core-e5ce30fed81d1918a259be092dcd8bfffc3c2649.zip |
Clean up init /proc/cmdline handling.
Helped debug a problem where the N9 bootloader incorrectly
concatenated the various command lines.
Bug: http://b/20906691
Change-Id: I0580b06f4185129c7eedf0bdf74b5ce17f88bf9c
Diffstat (limited to 'init/init_parser.h')
-rw-r--r-- | init/init_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init_parser.h b/init/init_parser.h index 6348607e5..90f880f79 100644 --- a/init/init_parser.h +++ b/init/init_parser.h @@ -31,7 +31,7 @@ void queue_property_triggers(const char *name, const char *value); void queue_all_property_triggers(); void queue_builtin_action(int (*func)(int nargs, char **args), const char *name); -int init_parse_config_file(const char *fn); +bool init_parse_config_file(const char* path); int expand_props(char *dst, const char *src, int len); service* make_exec_oneshot_service(int argc, char** argv); |