Re: (Fwd) [Squid-cvs] s2_4 squid/lib Array.c,1.3.4.1,1.3.4.2

From: Henrik Nordstrom <hno@dont-contact.us>
Date: 11 Nov 2002 10:37:45 +0100

Perhaps, but it is not such a big problem and adding such restrictions
requires someone to implement such detailed access control in CVS.

Such commits stays for at most 24 hours in the CVS tree before beeing
automatically wiped out, much less if someone initiates a manual synch
of the CVS.

For now I feel it is easier just to deal with it when it happens.

Regards
Henrik

mån 2002-11-11 klockan 09.44 skrev Andres Kroonmaa:
>
>
> Henrik,
>
>
> shouldn't such commits be restricted?
>
>
> <color><param>0100,0100,0100</param>------- Forwarded message follows -------
>
> </color>To: <color><param>0000,0000,8000</param>squid-cvs@lists.sourceforge.net</color>
>
> From: <color><param>0000,0000,8000</param>Yee Man Chan <<ymc@users.sourceforge.net></color>
>
> <bold>Subject: <color><param>0000,0000,8000</param>[Squid-cvs] s2_4 squid/lib Array.c,1.3.4.1,1.3.4.2</bold></color>
>
> Date sent: <color><param>0000,0000,8000</param>Mon, 11 Nov 2002 00:26:03 -0800</color>
>
>
> <underline><color><param>0000,8000,0000</param>[ Double-click this line for list subscription options ]</underline></color>
>
>
> Update of /cvsroot/squid/squid/lib
>
> In directory usw-pr-cvs1:/tmp/cvs-serv3399/lib
>
>
> Modified Files:
>
> Tag: s2_4
>
> Array.c
>
> Log Message:
>
> compilable re-write of DSA
>
>
>
> Index: Array.c
>
> ===================================================================
>
> RCS file: /cvsroot/squid/squid/lib/Array.c,v
>
> retrieving revision 1.3.4.1
>
> retrieving revision 1.3.4.2
>
> diff -w -u -r1.3.4.1 -r1.3.4.2
>
> --- Array.c 15 Jan 2001 22:49:17 -0000 1.3.4.1
>
> +++ Array.c 11 Nov 2002 08:25:30 -0000 1.3.4.2
>
> @@ -102,6 +102,20 @@
>
> arrayGrow(a, a->count + app_count);
>
> }
>
>
>
>
> +void
>
> +arrayDelete(Array * a, void * obj)
>
> +{
>
> + int i,j;
>
> + assert(a);
>
> + assert(a->count > 0);
>
> + for (i = 0; i << a->count; ++i)
>
> + if (a->items[i] == obj)
>
> + break;
>
> + --a->count;
>
> + for (j = i; j << a->count; ++j)
>
> + a->items[j] = a->items[j+1];
>
> +}
>
> +
>
> /* grows internal buffer to satisfy required minimal capacity */
>
> static void
>
> arrayGrow(Array * a, int min_capacity)
>
>
>
>
> -------------------------------------------------------
>
> This sf.net email is sponsored by:ThinkGeek
>
> Welcome to geek heaven.
>
> http://thinkgeek.com/sf
>
> _______________________________________________
>
> Squid-cvs mailing list
>
> http://squid.sourceforge.net/projects.html
>
> <color><param>0100,0100,0100</param>------- End of forwarded message -------
>
>
>
> ------------------------------------
> Andres Kroonmaa <andre@online.ee>
> CTO, Microlink Data AS
> Tel: 6501 731, Fax: 6501 725
> Pärnu mnt. 158, Tallinn
> 11317 Estonia
Received on Mon Nov 11 2002 - 02:36:43 MST

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:18:41 MST