]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Receive.pm
tag plugin: encode categories using numeric values
[ikiwiki.git] / IkiWiki / Receive.pm
index 225f2b9abf33ab995f94576a8a735db9c67fb80b..5908e09f953ad09cb576cae6c956230be497d6df 100644 (file)
@@ -35,10 +35,17 @@ EOF
                        }
                        "u != $uid";
                } @{$config{untrusted_committers}}).
-               ") exit(0);\n";
+               ") {\n";
 
        
        $ret.=<<"EOF";
+                       /* Trusted user.
+                        * Consume all stdin before exiting, as git may
+                        * otherwise be unhappy. */
+                       char buf[256];
+                       while (read(0, &buf, 256) != 0) {}
+                       exit(0);
+               }
                asprintf(&s, "CALLER_UID=%i", u);
                newenviron[i++]=s;
        }
@@ -73,7 +80,7 @@ sub test () {
                }) || error("failed adding user");
        }
 
-       check_canchange(
+       IkiWiki::check_canchange(
                cgi => $cgi,
                session => $session,
                changes => [IkiWiki::rcs_receive()]