summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-15 19:52:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:11 -0500
commitfd619b4fb3a9a5c05df765d2cf57a042a4d5da2d (patch)
tree404c1910d83b1dfb5828f1559a92597815df3a2d /source4
parenta9e08ba474e4712d121bdce3960fe579f8d68bca (diff)
downloadsamba-fd619b4fb3a9a5c05df765d2cf57a042a4d5da2d.tar.gz
samba-fd619b4fb3a9a5c05df765d2cf57a042a4d5da2d.tar.bz2
samba-fd619b4fb3a9a5c05df765d2cf57a042a4d5da2d.zip
r10245: Get rid of XFILE in a few places.
Add fdprintf() and vfdprintf() helper functions. (This used to be commit 6685009f6af94b088084d69a43bcea5f8335ae57)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/cmdline/readline.c4
-rw-r--r--source4/lib/credentials.c30
-rw-r--r--source4/lib/util_file.c26
-rw-r--r--source4/param/generic.c14
4 files changed, 47 insertions, 27 deletions
diff --git a/source4/lib/cmdline/readline.c b/source4/lib/cmdline/readline.c
index 4970638d41..42810c8697 100644
--- a/source4/lib/cmdline/readline.c
+++ b/source4/lib/cmdline/readline.c
@@ -59,7 +59,7 @@ static char *smb_readline_replacement(const char *prompt, void (*callback)(void)
fd_set fds;
static pstring line;
struct timeval timeout;
- int fd = x_fileno(x_stdin);
+ int fd = STDIN_FILENO;
char *ret;
do_debug("%s", prompt);
@@ -88,7 +88,7 @@ char *smb_readline(const char *prompt, void (*callback)(void),
char **(completion_fn)(const char *text, int start, int end))
{
#if HAVE_LIBREADLINE
- if (isatty(x_fileno(x_stdin))) {
+ if (isatty(STDIN_FILENO)) {
char *ret;
/* Aargh! Readline does bizzare things with the terminal width
diff --git a/source4/lib/credentials.c b/source4/lib/credentials.c
index a82c01d4c9..cdef9042b8 100644
--- a/source4/lib/credentials.c
+++ b/source4/lib/credentials.c
@@ -671,37 +671,30 @@ BOOL cli_credentials_parse_password_file(struct cli_credentials *credentials, co
BOOL cli_credentials_parse_file(struct cli_credentials *cred, const char *file, enum credentials_obtained obtained)
{
- XFILE *auth;
- char buf[128];
uint16_t len = 0;
char *ptr, *val, *param;
+ char **lines;
+ int i, numlines;
- if ((auth=x_fopen(file, O_RDONLY, 0)) == NULL)
+ lines = file_lines_load(file, &numlines, NULL);
+
+ if (lines == NULL)
{
/* fail if we can't open the credentials file */
d_printf("ERROR: Unable to open credentials file!\n");
return False;
}
- while (!x_feof(auth))
- {
- /* get a line from the file */
- if (!x_fgets(buf, sizeof(buf), auth))
- continue;
- len = strlen(buf);
+ for (i = 0; i < numlines; i++) {
+ len = strlen(lines[i]);
- if ((len) && (buf[len-1]=='\n'))
- {
- buf[len-1] = '\0';
- len--;
- }
if (len == 0)
continue;
/* break up the line into parameter & value.
* will need to eat a little whitespace possibly */
- param = buf;
- if (!(ptr = strchr_m (buf, '=')))
+ param = lines[i];
+ if (!(ptr = strchr_m (lines[i], '=')))
continue;
val = ptr+1;
@@ -720,10 +713,11 @@ BOOL cli_credentials_parse_file(struct cli_credentials *cred, const char *file,
} else if (strwicmp("realm", param) == 0) {
cli_credentials_set_realm(cred, val, obtained);
}
- memset(buf, 0, sizeof(buf));
+ memset(lines[i], 0, len);
}
- x_fclose(auth);
+ talloc_free(lines);
+
return True;
}
diff --git a/source4/lib/util_file.c b/source4/lib/util_file.c
index 1330b0a70d..338b9547a5 100644
--- a/source4/lib/util_file.c
+++ b/source4/lib/util_file.c
@@ -397,3 +397,29 @@ BOOL file_exists(const char *path)
struct stat st;
return (stat(path, &st) == 0);
}
+
+int vfdprintf(int fd, const char *format, va_list ap)
+{
+ char *p;
+ int len, ret;
+ va_list ap2;
+
+ VA_COPY(ap2, ap);
+
+ len = vasprintf(&p, format, ap2);
+ if (len <= 0) return len;
+ ret = write(fd, p, len);
+ SAFE_FREE(p);
+ return ret;
+}
+
+int fdprintf(int fd, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
+{
+ va_list ap;
+ int ret;
+
+ va_start(ap, format);
+ ret = vfdprintf(fd, format, ap);
+ va_end(ap);
+ return ret;
+}
diff --git a/source4/param/generic.c b/source4/param/generic.c
index b6d2fd0449..adf1eb0b31 100644
--- a/source4/param/generic.c
+++ b/source4/param/generic.c
@@ -242,28 +242,28 @@ int param_read(struct param_context *ctx, const char *fn)
int param_write(struct param_context *ctx, const char *fn)
{
- XFILE *file;
+ int file;
struct param_section *section;
if (fn == NULL || ctx == NULL)
return -1;
- file = x_fopen(fn, O_WRONLY|O_CREAT, 0755);
+ file = open(fn, O_WRONLY|O_CREAT, 0755);
- if (file == NULL)
+ if (file == -1)
return -1;
for (section = ctx->sections; section; section = section->next) {
struct param *param;
- x_fprintf(file, "[%s]\n", section->name);
+ fdprintf(file, "[%s]\n", section->name);
for (param = section->parameters; param; param = param->next) {
- x_fprintf(file, "\t%s = %s\n", param->name, param->value);
+ fdprintf(file, "\t%s = %s\n", param->name, param->value);
}
- x_fprintf(file, "\n");
+ fdprintf(file, "\n");
}
- x_fclose(file);
+ close(file);
return 0;
}