From c306d807358c5ef73f7cd7d79e5f401c60892ca4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 8 May 2007 03:27:35 +0000 Subject: (strfry): Make result more random. --- string/strfry.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'string/strfry.c') diff --git a/string/strfry.c b/string/strfry.c index 112dd4adb3..a8b202d176 100644 --- a/string/strfry.c +++ b/string/strfry.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1996, 1999, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1996, 1999, 2002, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,16 +37,14 @@ strfry (char *string) init = 1; } - len = strlen (string); + len = strlen (string) - 1; for (i = 0; i < len; ++i) { int32_t j; - char c; - __random_r (&rdata, &j); - j %= len; + j = j % len + 1; - c = string[i]; + char c = string[i]; string[i] = string[j]; string[j] = c; } -- cgit v1.2.3