]> git.wh0rd.org Git - nano.git/commitdiff
nano.c:main() - Don't call open_file with quiet flag set. Fixes Debian bug #Fixes...
authorChris Allegretta <chrisa@asty.org>
Sat, 15 May 2004 00:08:52 +0000 (00:08 +0000)
committerChris Allegretta <chrisa@asty.org>
Sat, 15 May 2004 00:08:52 +0000 (00:08 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_2_branch/nano@1741 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
nano.c

index 259d6d10ce8dc1f1f9c2764ff8519ccf97a050c6..326c70a2424dd460bac364a8095533b34b7987a9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 CVS code -
 - General:
        - Translation updates (see po/ChangeLog for details).
+- nano.c:
+  main()
+       - Don't call open_file with quiet flag set.  Fixes Debian bug 
+         #246956 (no warning when trying to open non-readable file).
 
 GNU nano 1.2.3 - 2004.01.17
 - General:
diff --git a/nano.c b/nano.c
index bf052aef6aebf56e430304b5b7e1ff65adfed21d..813304fd91c2892174572ec28a938a06865dec3f 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -3420,7 +3420,7 @@ int main(int argc, char *argv[])
     fprintf(stderr, "Main: open file\n");
 #endif
 
-    open_file(filename, 0, 1);
+    open_file(filename, 0, 0);
 #ifdef ENABLE_MULTIBUFFER
     /* If we're using multibuffers and more than one file is specified
        on the command line, load them all and switch to the first one