]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Rename slurp_file() to slurp_text_file().
authorSimon Ruderich <simon@ruderich.org>
Thu, 8 Aug 2013 16:13:34 +0000 (18:13 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 8 Aug 2013 16:13:34 +0000 (18:13 +0200)
It can only handle text files.

src/tlsproxy.c

index b4beceaa2cd25f115196fad43a5737754494aa09..3d9e80fb532938679eab674ebe520b0cc9c599ee 100644 (file)
@@ -75,7 +75,7 @@ static void sigint_handler(int signal);
 
 static void parse_arguments(int argc, char **argv);
 static void print_usage(const char *argv);
-static char *slurp_file(const char *path);
+static char *slurp_text_file(const char *path);
 
 static void initialize_gnutls(void);
 static void deinitialize_gnutls(void);
@@ -267,7 +267,7 @@ static void parse_arguments(int argc, char **argv) {
     while ((option = getopt(argc, argv, "a:d:p:t:uh?")) != -1) {
         switch (option) {
             case 'a': {
-                http_digest_authorization = slurp_file(optarg);
+                http_digest_authorization = slurp_text_file(optarg);
                 if (http_digest_authorization == NULL) {
                     fprintf(stderr, "failed to open authorization file '%s': ",
                                     optarg);
@@ -445,7 +445,7 @@ static void *worker_thread(void *unused) {
     return NULL;
 }
 
-static char *slurp_file(const char *path) {
+static char *slurp_text_file(const char *path) {
     struct stat stat;
     size_t size_read;
     char *content = NULL;