remove some spurious line-endings
authorYang Tse <yangsita@gmail.com>
Fri, 17 Oct 2008 03:59:02 +0000 (03:59 +0000)
committerYang Tse <yangsita@gmail.com>
Fri, 17 Oct 2008 03:59:02 +0000 (03:59 +0000)
docs/libcurl/curl_easy_setopt.3
include/curl/curl.h
include/curl/typecheck-gcc.h
lib/urldata.h

index 31482a1..6ebda87 100644 (file)
@@ -620,26 +620,26 @@ password to use for the transfer.
 
 The CURLOPT_PASSWORD option should be used in conjunction with
 as the \fICURLOPT_USERNAME\fP option. (Added in 7.19.1)
-.IP CURLOPT_PROXYUSERNAME\r
-Pass a char * as parameter, which should be pointing to the zero terminated\r
-user name to use for the transfer while connecting to Proxy.\r
-\r
-The CURLOPT_PROXYUSERNAME option should be used in same way as the\r
-\fICURLOPT_PROXYUSERPWD\fP is used.  In comparison to \fICURLOPT_PROXYUSERPWD\fP\r
-the CURLOPT_PROXYUSERNAME allows the username to contain colon,\r
-like in following example: "sip:user@example.com".\r
-Note the CURLOPT_PROXYUSERNAME option is an alternative way to set the user name\r
-while connecting to Proxy.  There is no meaning to use it together\r
-with the \fICURLOPT_PROXYUSERPWD\fP option.\r
-\r
-In order to specify the password to be used in conjunction with the user name\r
-use the \fICURLOPT_PROXYPASSWORD\fP option.  (Added in 7.19.1)\r
-.IP CURLOPT_PROXYPASSWORD\r
-Pass a char * as parameter, which should be pointing to the zero terminated\r
-password to use for the transfer while connecting to Proxy.\r
-\r
-The CURLOPT_PROXYPASSWORD option should be used in conjunction with\r
-as the \fICURLOPT_PROXYUSERNAME\fP option. (Added in 7.19.1)\r
+.IP CURLOPT_PROXYUSERNAME
+Pass a char * as parameter, which should be pointing to the zero terminated
+user name to use for the transfer while connecting to Proxy.
+
+The CURLOPT_PROXYUSERNAME option should be used in same way as the
+\fICURLOPT_PROXYUSERPWD\fP is used.  In comparison to \fICURLOPT_PROXYUSERPWD\fP
+the CURLOPT_PROXYUSERNAME allows the username to contain colon,
+like in following example: "sip:user@example.com".
+Note the CURLOPT_PROXYUSERNAME option is an alternative way to set the user name
+while connecting to Proxy.  There is no meaning to use it together
+with the \fICURLOPT_PROXYUSERPWD\fP option.
+
+In order to specify the password to be used in conjunction with the user name
+use the \fICURLOPT_PROXYPASSWORD\fP option.  (Added in 7.19.1)
+.IP CURLOPT_PROXYPASSWORD
+Pass a char * as parameter, which should be pointing to the zero terminated
+password to use for the transfer while connecting to Proxy.
+
+The CURLOPT_PROXYPASSWORD option should be used in conjunction with
+as the \fICURLOPT_PROXYUSERNAME\fP option. (Added in 7.19.1)
 .IP CURLOPT_HTTPAUTH
 Pass a long as parameter, which is set to a bitmask, to tell libcurl what
 authentication method(s) you want it to use. The available bits are listed
index 0d4fdbb..daa925f 100644 (file)
@@ -1144,10 +1144,10 @@ typedef enum {
   /* "name" and "pwd" to use when fetching. */
   CINIT(USERNAME, OBJECTPOINT, 173),
   CINIT(PASSWORD, OBJECTPOINT, 174),
-\r
-    /* "name" and "pwd" to use with Proxy when fetching. */\r
-  CINIT(PROXYUSERNAME, OBJECTPOINT, 175),\r
-  CINIT(PROXYPASSWORD, OBJECTPOINT, 176),\r
+
+    /* "name" and "pwd" to use with Proxy when fetching. */
+  CINIT(PROXYUSERNAME, OBJECTPOINT, 175),
+  CINIT(PROXYPASSWORD, OBJECTPOINT, 176),
 
   CURLOPT_LASTENTRY /* the last unused */
 } CURLoption;
index 6f5313f..41cc759 100644 (file)
@@ -198,9 +198,9 @@ _CURL_WARNING(_curl_easy_getinfo_err_curl_slist,
    (option) == CURLOPT_USERPWD ||                                             \
    (option) == CURLOPT_USERNAME ||                                            \
    (option) == CURLOPT_PASSWORD ||                                            \
-   (option) == CURLOPT_PROXYUSERPWD ||                                        \\r
-   (option) == CURLOPT_PROXYUSERNAME ||                                       \\r
-   (option) == CURLOPT_PROXYPASSWORD ||                                       \\r
+   (option) == CURLOPT_PROXYUSERPWD ||                                        \
+   (option) == CURLOPT_PROXYUSERNAME ||                                       \
+   (option) == CURLOPT_PROXYPASSWORD ||                                       \
    (option) == CURLOPT_ENCODING ||                                            \
    (option) == CURLOPT_REFERER ||                                             \
    (option) == CURLOPT_USERAGENT ||                                           \
index 079c771..c6d8bf1 100644 (file)
@@ -1338,8 +1338,8 @@ enum dupstring {
   STRING_SSL_ISSUERCERT,  /* issuer cert file to check certificate */
   STRING_USERNAME,        /* <username>, if used */
   STRING_PASSWORD,        /* <password>, if used */
-  STRING_PROXYUSERNAME,   /* Proxy <username>, if used */\r
-  STRING_PROXYPASSWORD,   /* Proxy <password>, if used */\r
+  STRING_PROXYUSERNAME,   /* Proxy <username>, if used */
+  STRING_PROXYPASSWORD,   /* Proxy <password>, if used */
 
   /* -- end of strings -- */
   STRING_LAST /* not used, just an end-of-list marker */