3APA3A <[EMAIL PROTECTED]> wrote:
> - for (n=len ; n ; n--) passwd[n+3] = passwd[n];
> + for (n=len ; n>=0 ; n--) passwd[n+3] = passwd[n];

  Why not memmove() ? It's ANSI, and the C compiler generally has
machine-specific methods to make it very efficient.

  Alan DeKok.

- 
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to