nhttpd: file API remove last comma for JSON

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1685 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 3a437bb7d5
Author: yjogol <yjogol2@online.de>
Date: 2011-09-09 (Fri, 09 Sep 2011)



------------------
This commit was generated by Migit
This commit is contained in:
yjogol
2011-09-09 18:32:29 +00:00
parent e802318f9c
commit 7824d40243

View File

@@ -2708,6 +2708,7 @@ void CControlAPI::FileCGI(CyhookHandler *hh) {
std::string path = hh->ParamList["path"];
if ((dirp = opendir(path.c_str()))) {
bool isFirstLine = true;
while ((entry = readdir(dirp))) {
std::string item = "";
item += hh->outPair("name",
@@ -2769,7 +2770,11 @@ void CControlAPI::FileCGI(CyhookHandler *hh) {
string_printf("%ld", (long) statbuf.st_mtime),
false);
}
result += hh->outArrayItem("item", item, true);
if(isFirstLine)
isFirstLine = false;
else
result += hh->outNext();
result += hh->outArrayItem("item", item, false);
}
closedir(dirp);
}