Commit bdf1157d authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Made a parameter const

parent b4a5ce89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ enum {
#define PASSWORDSIZE 64

/* returns -1 on failure, 0 if the host is found, 1 is the host isn't found */
int Curl_parsenetrc(char *host,
int Curl_parsenetrc(const char *host,
                    char *login,
                    char *password,
                    char *netrcfile)
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
 *
 * $Id$
 ***************************************************************************/
int Curl_parsenetrc(char *host,
int Curl_parsenetrc(const char *host,
                    char *login,
                    char *password,
                    char *filename);