602
603
604
605
606
607
608
|
if( nRid==0 && nName>10 ) zName[10] = 0;
tarball_of_checkin(rid, &tarball, zName);
free( zName );
free( zRid );
cgi_set_content(&tarball);
cgi_set_content_type("application/x-compressed");
}
|
>
>
>
>
>
|
602
603
604
605
606
607
608
609
610
611
612
613
|
if( nRid==0 && nName>10 ) zName[10] = 0;
tarball_of_checkin(rid, &tarball, zName);
free( zName );
free( zRid );
cgi_set_content(&tarball);
cgi_set_content_type("application/x-compressed");
}
/*
* vim:ts=2:sts=2:et:sw=2:ft=c
*/
|