X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcommon%2Fuuid.cpp;h=1a6ee5a0768ff45926f7d9f71ba83cebcb08fe4d;hb=22339c898f8c04af609419f036828323b26f480f;hp=224ec55f528a8c4d638a7191670b7d91863fed54;hpb=852cf9877ab4f1c0e6e2c1f53f2a03edd40c3c85;p=xestiacalendar%2F.git diff --git a/source/common/uuid.cpp b/source/common/uuid.cpp index 224ec55..1a6ee5a 100644 --- a/source/common/uuid.cpp +++ b/source/common/uuid.cpp @@ -1,8 +1,8 @@ -// uuid.cpp - UUID subroutines. +// uuid.cpp - UUID functions. // -// (c) 2012-2015 Xestia Software Development. +// (c) 2012-2017 Xestia Software Development. // -// This file is part of Xestia Calendar. +// This file is part of Xestia Calendar. Based on Xestia Address Book. // // Xestia Calendar is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by the @@ -37,29 +37,29 @@ string GenerateUUID() #include - FILE *uuid_hdl = popen("uuidgen", "r"); + FILE *uuidhdl = popen("uuidgen", "r"); - if (uuid_hdl == NULL) { + if (uuidhdl == NULL) { return ""; } - char strdata[64]; - std::string uuidout; + char strData[64]; + std::string uuidOut; - while (fgets(strdata, sizeof(strdata), uuid_hdl) != NULL){ - uuidout.append(strdata); + while (fgets(strData, sizeof(strData), uuidhdl) != NULL){ + uuidOut.append(strData); } - pclose(uuid_hdl); + pclose(uuidhdl); #endif - if (uuidout.back() == '\n'){ + if (uuidOut.back() == '\n'){ - uuidout.erase(uuidout.end()-1); + uuidOut.erase(uuidOut.end()-1); } - return uuidout; + return uuidOut; } \ No newline at end of file