From 59d85e2bb065a3bdc27868acb7a65f89d872c7fa Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 16 Jan 2014 09:26:50 -0600 Subject: Rename xmsprintf() to just xmprintf(). Partly because there's no supplied target string ala sprintf, and partly because I can never remember what order the m and s go in. --- lib/password.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/password.c') diff --git a/lib/password.c b/lib/password.c index e184e0e0..f2d010ec 100644 --- a/lib/password.c +++ b/lib/password.c @@ -129,7 +129,7 @@ int update_password(char *filename, char* username, char* entry) struct flock lock; shadow = strstr(filename, "shadow"); - filenamesfx = xmsprintf("%s+", filename); + filenamesfx = xmprintf("%s+", filename); sfx = strchr(filenamesfx, '+'); exfp = fopen(filename, "r+"); @@ -163,7 +163,7 @@ int update_password(char *filename, char* username, char* entry) } ret = 0; - namesfx = xmsprintf("%s:",username); + namesfx = xmprintf("%s:",username); while ((line = get_line(fileno(exfp))) != NULL) { if (strncmp(line, namesfx, strlen(namesfx))) -- cgit v1.2.3