main: forgotten styleup
This commit is contained in:
parent
cff617f8a4
commit
3b2b3b7f00
17
src/main.cpp
17
src/main.cpp
|
@ -121,18 +121,18 @@ int main (int argc, char**argv)
|
||||||
* something is happening here, therefore init everything
|
* something is happening here, therefore init everything
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int exitflag=0;
|
int exitflag = 0;
|
||||||
|
|
||||||
keyring KR;
|
keyring KR;
|
||||||
|
|
||||||
if(!KR.open()) {
|
if (!KR.open() ) {
|
||||||
err("could not open keyring!");
|
err ("could not open keyring!");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!KR.load()) {
|
if (!KR.load() ) {
|
||||||
err("could not load keyring!");
|
err ("could not load keyring!");
|
||||||
exitflag=1;
|
exitflag = 1;
|
||||||
goto exit_ok;
|
goto exit_ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,8 +153,9 @@ int main (int argc, char**argv)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exit_ok:
|
exit_ok:
|
||||||
if(!KR.close()) {
|
if (!KR.close() ) {
|
||||||
err("could not close keyring, something weird is going to happen.");
|
err ("could not close keyring, "
|
||||||
|
"something weird is going to happen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
return exitflag;
|
return exitflag;
|
||||||
|
|
Loading…
Reference in a new issue