From 415e32d463bbb881d991d886ddba6f859669c098 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 19 Oct 2007 11:46:10 +0000 Subject: Bug 399954: Make Bugzilla able to hold its dependencies in a local directory Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- editgroups.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editgroups.cgi') diff --git a/editgroups.cgi b/editgroups.cgi index 19db870ec..b7223e08d 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -25,7 +25,7 @@ # Frédéric Buclin use strict; -use lib "."; +use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; -- cgit v1.2.1 ader'> cgit logo index : drakx
Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
blob: d73c84220fb2129025b74de809c70d3761e33564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "dietstdio.h"
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <pthread.h>
#include <errno.h>

extern int __stdio_atexit;
extern FILE* __stdio_init_file_nothreads(int fd,int closeonerror);

FILE* __stdio_init_file(int fd,int closeonerror) {
  FILE *tmp=__stdio_init_file_nothreads(fd,closeonerror);
  if (tmp) pthread_mutex_init(&tmp->m,0);
  return tmp;
}