diff options
| author | Marc G. Fournier | 1997-05-07 02:59:59 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1997-05-07 02:59:59 +0000 |
| commit | a5d7eb90a8295dae6cbd872d8f81920c63a397bc (patch) | |
| tree | 31941ba20697aa36295c4b1389b5e5939c50078a /src/bin/destroyuser | |
| parent | 505a4709e21c427a2574a58356b27e34fe21479c (diff) | |
From: Keith Parks <emkxp01@mtcc.demon.co.uk>
Subject: [PATCHES] Three small patches.
Hi,
Here are 3 small patches to the postgreSQL source sup'd on
the 6th May 1997.
The 1st 2 fix the shell backslash "c" handling used to suppress
the newline on some unix shells. (The \c needs to be inside quote.)
The 3rd may or may not be the correct way to fix the missing
define of INDEX_MAX_KEYS in pg_dump.h
Diffstat (limited to 'src/bin/destroyuser')
| -rw-r--r-- | src/bin/destroyuser/destroyuser.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/destroyuser/destroyuser.sh b/src/bin/destroyuser/destroyuser.sh index 3fee61559c3..ec329128276 100644 --- a/src/bin/destroyuser/destroyuser.sh +++ b/src/bin/destroyuser/destroyuser.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.6 1996/11/17 03:55:07 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.7 1997/05/07 02:59:52 scrappy Exp $ # # Note - this should NOT be setuid. # @@ -90,7 +90,7 @@ fi if [ -z "$DELUSER" ] then - echo _fUnKy_DASH_N_sTuFf_ "Enter name of user to delete ---> "_fUnKy_BACKSLASH_C_sTuFf_ + echo _fUnKy_DASH_N_sTuFf_ "Enter name of user to delete ---> _fUnKy_BACKSLASH_C_sTuFf_" read DELUSER fi @@ -154,7 +154,7 @@ then yn=f while [ $yn != y -a $yn != n ] do - echo _fUnKy_DASH_N_sTuFf_ "Deleting user $DELUSER will destroy them. Continue (y/n)? "_fUnKy_BACKSLASH_C_sTuFf_ + echo _fUnKy_DASH_N_sTuFf_ "Deleting user $DELUSER will destroy them. Continue (y/n)? _fUnKy_BACKSLASH_C_sTuFf_" read yn done |
