diff options
author | Zack Weinberg <zackw@panix.com> | 2021-02-27 19:36:43 -0500 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2021-03-07 11:00:44 -0500 |
commit | 931427d19b1f314321bf8c300f1d2cef976464bc (patch) | |
tree | 1db846d61d708127c422a8ea2c382933bc216749 /test | |
parent | 8ff604bf35b73a0a363c1a00f6ff529173ab4394 (diff) | |
download | libxcrypt-931427d19b1f314321bf8c300f1d2cef976464bc.tar.gz libxcrypt-931427d19b1f314321bf8c300f1d2cef976464bc.tar.bz2 libxcrypt-931427d19b1f314321bf8c300f1d2cef976464bc.zip |
Remove the XCRYPT_STRCPY_OR_ABORT macro.
All callers changed to call strcpy_or_abort directly.
Diffstat (limited to 'test')
-rw-r--r-- | test/gensalt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gensalt.c b/test/gensalt.c index 2d590a9..52ca242 100644 --- a/test/gensalt.c +++ b/test/gensalt.c @@ -467,7 +467,7 @@ main (void) fprintf (stderr, " ok: %s/%lu/%u -> %s\n", tcase->prefix, tcase->rounds, ent, salt); - XCRYPT_STRCPY_OR_ABORT (prev_output, CRYPT_GENSALT_OUTPUT_SIZE, salt); + strcpy_or_abort (prev_output, CRYPT_GENSALT_OUTPUT_SIZE, salt); /* Test if crypt works with this salt. */ if (!tcase->rounds) |