]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* yesno.c: Include getline.h, not ctype.h.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 May 2005 16:50:57 +0000 (16:50 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 May 2005 16:50:57 +0000 (16:50 +0000)
(yesno): Don't remove leading white space; POSIX doesn't allow it.
Use getline to remove arbitrary restriction on response length.

lib/ChangeLog
lib/yesno.c

index aa4d9a831853681773f824358fdccd956fe11e3b..7037d248a4d38f8ff599613c169f616e4a267b96 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * yesno.c: Include getline.h, not ctype.h.
+       (yesno): Don't remove leading white space; POSIX doesn't allow it.
+       Use getline to remove arbitrary restriction on response length.
+
 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
 
        * makepath.c (make_path): chdir to "//", not "/", if the file name
index 54691b7ff999fdc5b348233e487d28d70e4523ab..9a23c28fd18c83208946bddefee8696ee10c5d48 100644 (file)
@@ -1,5 +1,7 @@
 /* yesno.c -- read a yes/no response from stdin
-   Copyright (C) 1990, 1998, 2001, 2003, 2004 Free Software Foundation, Inc.
+
+   Copyright (C) 1990, 1998, 2001, 2003, 2004, 2005 Free Software
+   Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 #include "yesno.h"
 
-#include <ctype.h>
 #include <stdlib.h>
 #include <stdio.h>
 
-#if USE_UNLOCKED_IO
-# include "unlocked-io.h"
-#endif
+#include "getline.h"
 
-/* Read one line from standard input
-   and return nonzero if that line begins with y or Y,
-   otherwise return 0. */
+/* Return true if we read an affirmative line from standard input.  */
 
 extern int rpmatch (char const *response);
 
 bool
 yesno (void)
 {
-  /* We make some assumptions here:
-     a) leading white space in the response are not vital
-     b) the first 128 characters of the answer are enough (the rest can
-       be ignored)
-     I cannot think for a situation where this is not ok.  --drepper@gnu  */
-  char buf[128];
-  int len = 0;
-  int c;
-
-  while ((c = getchar ()) != EOF && c != '\n')
-    if ((len > 0 && len < 127) || (len == 0 && !isspace (c)))
-      buf[len++] = c;
-  buf[len] = '\0';
-
-  return rpmatch (buf) == 1;
+  char *response = NULL;
+  size_t response_size = 0;
+  ssize_t response_len = getline (&response, &response_size, stdin);
+  bool yes;
+
+  if (response_len <= 0)
+    yes = false;
+  else
+    {
+      response[response_len - 1] = '\0';
+      yes = (0 < rpmatch (response));
+    }
+
+  free (response);
+  return yes;
 }