Fix spelling of SOUP_ERROR_MOVED_PERMANENTLY and its description.
authorDan Winship <danw@src.gnome.org>
Mon, 18 Nov 2002 15:30:53 +0000 (15:30 +0000)
committerDan Winship <danw@src.gnome.org>
Mon, 18 Nov 2002 15:30:53 +0000 (15:30 +0000)
* libsoup/soup-error.c: Fix spelling of
SOUP_ERROR_MOVED_PERMANENTLY and its description.

ChangeLog
libsoup/soup-error.c
libsoup/soup-error.h

index 0d4b91b..a01e9fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
        since it's apparently non-portable. Use s6_addr instead.
        (soup_gethostbyaddr): fix a sometimes-uninitialized variable.
 
+       * libsoup/soup-error.c: Fix spelling of
+       SOUP_ERROR_MOVED_PERMANENTLY and its description.
+
        * libsoup/soup-message.c (soup_message_get_request_header, etc):
        Remove long-deprecated API.
 
index 11c5781..a6b150b 100644 (file)
@@ -51,7 +51,7 @@ struct {
         * SOUP_ERROR_CLASS_REDIRECT 
         */
        { SOUP_ERROR_MULTIPLE_CHOICES,   "Multiple Choices" },
-       { SOUP_ERROR_MOVED_PERMANANTLY,  "Moved Permanantly" },
+       { SOUP_ERROR_MOVED_PERMANENTLY,  "Moved Permanently" },
        { SOUP_ERROR_FOUND,              "Found" },
        { SOUP_ERROR_SEE_OTHER,          "See Other" },
        { SOUP_ERROR_NOT_MODIFIED,       "Not Modified" },
index 2c8da8e..92cc032 100644 (file)
@@ -59,7 +59,7 @@ typedef enum {
        SOUP_ERROR_DAV_MULTISTATUS          = 207,
 
        SOUP_ERROR_MULTIPLE_CHOICES         = 300,
-       SOUP_ERROR_MOVED_PERMANANTLY        = 301,
+       SOUP_ERROR_MOVED_PERMANENTLY        = 301,
        SOUP_ERROR_FOUND                    = 302,
        SOUP_ERROR_MOVED_TEMPORARILY        = SOUP_ERROR_FOUND,
        SOUP_ERROR_SEE_OTHER                = 303,