* [PATCH] gitweb: fix two warnings
@ 2006-07-26 14:58 Johannes Schindelin
2006-07-26 17:48 ` Luben Tuikov
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2006-07-26 14:58 UTC (permalink / raw)
To: git, junkio
These warnings cluttered up my log.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
---
gitweb/gitweb.cgi | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi
index e226ac2..e5fca63 100755
--- a/gitweb/gitweb.cgi
+++ b/gitweb/gitweb.cgi
@@ -795,7 +795,7 @@ sub git_read_projects {
if (-d $projects_list) {
# search in directory
my $dir = $projects_list;
- opendir my $dh, $dir or return undef;
+ opendir my ($dh), $dir or return undef;
while (my $dir = readdir($dh)) {
if (-e "$projectroot/$dir/HEAD") {
my $pr = {
@@ -810,7 +810,7 @@ sub git_read_projects {
# 'git%2Fgit.git Linus+Torvalds'
# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
- open my $fd , $projects_list or return undef;
+ open my ($fd), $projects_list or return undef;
while (my $line = <$fd>) {
chomp $line;
my ($path, $owner) = split ' ', $line;
--
1.4.2.rc2.g6a4e
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] gitweb: fix two warnings
2006-07-26 14:58 [PATCH] gitweb: fix two warnings Johannes Schindelin
@ 2006-07-26 17:48 ` Luben Tuikov
2006-07-26 18:43 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Luben Tuikov @ 2006-07-26 17:48 UTC (permalink / raw)
To: Johannes Schindelin, git, junkio
--- Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
>
> These warnings cluttered up my log.
>
> Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
> ---
> gitweb/gitweb.cgi | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi
> index e226ac2..e5fca63 100755
> --- a/gitweb/gitweb.cgi
> +++ b/gitweb/gitweb.cgi
> @@ -795,7 +795,7 @@ sub git_read_projects {
> if (-d $projects_list) {
> # search in directory
> my $dir = $projects_list;
> - opendir my $dh, $dir or return undef;
> + opendir my ($dh), $dir or return undef;
> while (my $dir = readdir($dh)) {
> if (-e "$projectroot/$dir/HEAD") {
> my $pr = {
> @@ -810,7 +810,7 @@ sub git_read_projects {
> # 'git%2Fgit.git Linus+Torvalds'
> # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
> # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
> - open my $fd , $projects_list or return undef;
> + open my ($fd), $projects_list or return undef;
> while (my $line = <$fd>) {
> chomp $line;
> my ($path, $owner) = split ' ', $line;
> --
> 1.4.2.rc2.g6a4e
Can you please give more details of the warnings, cut-and-paste
would be nice, the problem as you perceive it, and your solution to it?
Thanks,
Luben
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gitweb: fix two warnings
2006-07-26 17:48 ` Luben Tuikov
@ 2006-07-26 18:43 ` Johannes Schindelin
0 siblings, 0 replies; 3+ messages in thread
From: Johannes Schindelin @ 2006-07-26 18:43 UTC (permalink / raw)
To: Luben Tuikov; +Cc: git, junkio
Hi,
On Wed, 26 Jul 2006, Luben Tuikov wrote:
> --- Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> >
> > These warnings cluttered up my log.
>
> Can you please give more details of the warnings, cut-and-paste
> would be nice, the problem as you perceive it, and your solution to it?
Sure: The log contains these lines over and over again (I wrapped them
manually):
Wed Jul 26 15:54:52 2006] [error] [client 192.168.0.67] \
[Wed Jul 26 15:54:52 2006] \
gitweb.cgi: Parentheses missing around "my" list at \
/[my-private-repo]/.git/gitweb/gitweb.cgi line 798., \
referer: http://dumbo:1234/?p=.git;a=summary
and
[Wed Jul 26 15:54:52 2006] [error] [client 192.168.0.67] \
[Wed Jul 26 15:54:52 2006] \
gitweb.cgi: Parentheses missing around "my" list at \
/[my-private-repo]/.git/gitweb/gitweb.cgi line 813., \
referer: http://dumbo:1234/?p=.git;a=summary
And my solution was to add the parentheses around the parameter of "my".
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-07-26 18:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-26 14:58 [PATCH] gitweb: fix two warnings Johannes Schindelin
2006-07-26 17:48 ` Luben Tuikov
2006-07-26 18:43 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox