| Kernel v2.4.13 /drivers/video/valkyriefb.c |
|---|
 2.4.13
 drivers
 video
 valkyriefb.c
diff -u --recursive --new-file v2.4.12/linux/drivers/video/valkyriefb.c linux/drivers/video/valkyriefb.c
--- v2.4.12/linux/drivers/video/valkyriefb.c Sun Sep 23 11:41:00 2001
+++ linux/drivers/video/valkyriefb.c Sun Oct 21 10:14:38 2001
@@ -801,8 +801,7 @@
if (!options || !*options)
return 0;
- for (this_opt = strtok(options, ","); this_opt;
- this_opt = strtok(NULL, ",")) {
+ while (this_opt = strsep(&options, ",")) {
if (!strncmp(this_opt, "font:", 5)) {
char *p;
int i;
|