You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2011/12/12 20:23:12 UTC

svn commit: r1213382 - in /apr/apr/trunk: file_io/win32/open.c threadproc/win32/signals.c uri/apr_uri.c

Author: trawick
Date: Mon Dec 12 19:23:12 2011
New Revision: 1213382

URL: http://svn.apache.org/viewvc?rev=1213382&view=rev
Log:
definAtely

Modified:
    apr/apr/trunk/file_io/win32/open.c
    apr/apr/trunk/threadproc/win32/signals.c
    apr/apr/trunk/uri/apr_uri.c

Modified: apr/apr/trunk/file_io/win32/open.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/file_io/win32/open.c?rev=1213382&r1=1213381&r2=1213382&view=diff
==============================================================================
--- apr/apr/trunk/file_io/win32/open.c (original)
+++ apr/apr/trunk/file_io/win32/open.c Mon Dec 12 19:23:12 2011
@@ -55,7 +55,7 @@ apr_status_t utf8_to_unicode_path(apr_wc
     apr_status_t rv;
 
     /* This is correct, we don't twist the filename if it is will
-     * definately be shorter than 248 characters.  It merits some 
+     * definitely be shorter than 248 characters.  It merits some 
      * performance testing to see if this has any effect, but there
      * seem to be applications that get confused by the resulting
      * Unicode \\?\ style file names, especially if they use argv[0]

Modified: apr/apr/trunk/threadproc/win32/signals.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/threadproc/win32/signals.c?rev=1213382&r1=1213381&r2=1213382&view=diff
==============================================================================
--- apr/apr/trunk/threadproc/win32/signals.c (original)
+++ apr/apr/trunk/threadproc/win32/signals.c Mon Dec 12 19:23:12 2011
@@ -31,7 +31,7 @@
 /* Windows only really support killing process, but that will do for now. 
  *
  * ### Actually, closing the input handle to the proc should also do fine 
- * for most console apps.  This definately needs improvement...
+ * for most console apps.  This definitely needs improvement...
  */
 APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int signal)
 {

Modified: apr/apr/trunk/uri/apr_uri.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/uri/apr_uri.c?rev=1213382&r1=1213381&r2=1213382&view=diff
==============================================================================
--- apr/apr/trunk/uri/apr_uri.c (original)
+++ apr/apr/trunk/uri/apr_uri.c Mon Dec 12 19:23:12 2011
@@ -334,7 +334,7 @@ deal_with_authority:
 
     /* If there's a username:password@host:port, the @ we want is the last @...
      * too bad there's no memrchr()... For the C purists, note that hostinfo
-     * is definately not the first character of the original uri so therefore
+     * is definitely not the first character of the original uri so therefore
      * &hostinfo[-1] < &hostinfo[0] ... and this loop is valid C.
      */
     do {