add some braces to make gcc happy

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8691 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2000-07-18 10:00:31 +00:00
parent b912c38dfd
commit 0044c0e5a9

View File

@@ -566,16 +566,17 @@ get(int argc, char **argv)
{
char *mode;
if (restart_point)
if (restart_point) {
if (curtype == TYPE_I)
mode = "r+wb";
else
mode = "r+w";
else
} else {
if (curtype == TYPE_I)
mode = "wb";
else
mode = "w";
}
getit(argc, argv, 0, mode);
}