| delorie.com/archives/browse.cgi | search |
| X-Spam-Check-By: | sourceware.org |
| Date: | Sat, 4 Feb 2006 00:29:57 -0500 |
| From: | Christopher Faylor <cgf-no-personal-reply-please AT cygwin DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: cvs is broken/cygwin-bug in mkdir()? |
| Message-ID: | <20060204052957.GA19364@trixie.casa.cgf.cx> |
| Reply-To: | cygwin AT cygwin DOT com |
| References: | <ds158s$vfk$1 AT sea DOT gmane DOT org> <Pine DOT GSO DOT 4 DOT 63 DOT 0602032230020 DOT 3425 AT access1 DOT cims DOT nyu DOT edu> |
| Mime-Version: | 1.0 |
| In-Reply-To: | <Pine.GSO.4.63.0602032230020.3425@access1.cims.nyu.edu> |
| User-Agent: | Mutt/1.5.11 |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On Fri, Feb 03, 2006 at 11:44:22PM -0500, Igor Peshansky wrote:
>Yes. Looks like Cygwin is too hasty in assigning the error number: Linux
>only returns ENOENT if the directory doesn't already exist, but Cygwin
>will always return it for a trailing dot argument. The same with rmdir,
>where it would always return EINVAL, even if the directory doesn't exist
>(in which case Linux returns ENOENT). FWIW, POSIX only specifies an
>action for rmdir() on a trailing dot (EINVAL).
rmdir doesn't always return EINVAL.
Test program:
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
int
main (int argc, char **argv)
{
printf ("%d = rmdir (\"%s\")\n", rmdir (*++argv), *argv);
perror ("rmdir");
}
Run it:
bash-3.00$ ./rmdir qwer
-1 = rmdir ("qwer")
rmdir: No such file or directory
bash-3.00$ ./rmdir qwer/.
-1 = rmdir ("qwer/.")
rmdir: Invalid argument
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |