chiark / gitweb /
update DRIVER== changes
[elogind.git] / extras / volume_id / vol_id.c
index 73843ef6995d2cd2b9c92c1bba438c3bbcea7b3a..92f00e0c50006f2ee43c6cb024bc340d8257a7d6 100644 (file)
@@ -188,7 +188,8 @@ int main(int argc, char *argv[])
        /* try to drop all privileges before reading disk content */
        pw = getpwnam ("nobody");
        if (pw != NULL && pw->pw_uid > 0 && pw->pw_gid > 0) {
-               dbg("dropping privileges to %u:%u", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid);
+               dbg("dropping privileges to %u:%u",
+                   (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid);
                if (setgroups(0, NULL) != 0 ||
                    setgid(pw->pw_gid) != 0 ||
                    setuid(pw->pw_uid) != 0) {